From 230a0be10a4191811e2be7990e0bb1fcb0054219 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Sun, 10 May 2026 16:27:10 -0700 Subject: [PATCH] Use a pinned hash for the base Docker image and bump to the latest version of Alpine --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e68b777..12f60be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ -FROM alpine:3.18 +FROM alpine:3.23.4@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 RUN apk add --no-cache bash jq python3 py3-pip -RUN pip3 install --upgrade pip -RUN pip3 install pygments +RUN pip3 install --break-system-packages --upgrade pip & pip3 install --break-system-packages pygments WORKDIR /opt/representer COPY . .