From 6bf4618266880dbca5ef98c6c6ad996fe616bffb Mon Sep 17 00:00:00 2001 From: Kaindl Network <82705244+kaindlnetwork@users.noreply.github.com> Date: Tue, 11 Feb 2025 01:49:44 +0100 Subject: [PATCH] Set Fixed Alpine Version The Dockerfile lacks reproducibility during the build process if the container images in use are not pinned to a specific version. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8e97ece..17b4146 100644 --- a/Dockerfile +++ b/Dockerfile @@ -82,7 +82,7 @@ RUN sed -i \ RUN CGO_ENABLED=1 GOMAXPROCS=$(nproc) go build -tags musl -o paperless-gpt . # Stage 3: Create a lightweight image with just the binary -FROM alpine:latest +FROM alpine:3.21.2 ENV GIN_MODE=release