From e32238ad4dadad6b6d68be59fd6a544835d597bd Mon Sep 17 00:00:00 2001 From: Musselman Date: Tue, 2 Jul 2024 14:14:03 -0500 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Chore:=20Upgrade=20Dockerf?= =?UTF-8?q?ile=20image=20versions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 504e528..56e4bb8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Set the base image -FROM docker.io/library/golang:1.21-alpine3.18 as builder +FROM docker.io/library/golang:1.21-alpine3.20 as builder RUN apk --no-cache add ca-certificates git # Set the working directory WORKDIR /app @@ -11,7 +11,7 @@ COPY . . RUN go build -o notatio # Switch to the base Alpine image -FROM docker.io/library/alpine:3.18.4 +FROM docker.io/library/alpine:3.20.1 # Set the user and working directory RUN adduser -D notatio