diff --git a/Dockerfile b/Dockerfile index bb6240e3..612e697f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # This is a standalone Dockerfile that does not depend on goreleaser building the binary # It is NOT the version that is pushed to dockerhub -FROM golang:1.20.2-alpine3.16 as builder +FROM golang:1.20.2-alpine3.17 as builder # See "Runtime platform versions" in CONTRIBUTING.md RUN apk --no-cache add \ @@ -21,7 +21,7 @@ ENV GOPATH=/go RUN go build -a -o ldr . -FROM alpine:3.16.3 +FROM alpine:3.17.3 RUN addgroup -g 1000 -S ldr-user && \ adduser -u 1000 -S ldr-user -G ldr-user && \ diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index fa6b5f0d..9581e413 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -2,7 +2,7 @@ # See .ldrelease/config.yml for an explanation of the build/release process. -FROM alpine:3.16.3 +FROM alpine:3.17.3 # See "Runtime platform versions" in CONTRIBUTING.md RUN apk add --no-cache \