diff --git a/Dockerfile b/Dockerfile index 78e960e..c7ab679 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.20.1 AS certs +FROM alpine:3.20.2 AS certs RUN apk add ca-certificates @@ -12,7 +12,7 @@ COPY . /build/ RUN go mod download RUN CGO_ENABLED=0 go build -ldflags="-X main.version=${VERSION}" -a -o crunchy-users main.go -FROM alpine:3.20.1 +FROM alpine:3.20.2 COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=builder /build/crunchy-users /crunchy-users