From 3f7a89559321080956b20617186670462e595e63 Mon Sep 17 00:00:00 2001 From: Alex Wellnitz Date: Wed, 26 Mar 2025 16:37:24 +0100 Subject: [PATCH] fix: Update Dockerfile to use Alpine 3.21 as base image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0aa2919..4f2dc1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY . . RUN go build -o gosearch . # Use a minimal base image for final deployment -FROM alpine:latest +FROM alpine:3.21 # Set working directory in the container WORKDIR / # Copy the built binary from the builder stage