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