From 09ad3172cc07e8a545fa46ecb9c695b9341dc71c Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Tue, 11 Jun 2024 22:42:13 -0400 Subject: [PATCH] Bump Alpine from 3.15 to 3.20.0 (#520) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4ce91d5d..a8b74902 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN go build -o nomad-pack . # dev runs the binary from devbuild # ----------------------------------- -FROM alpine:3.18 AS dev +FROM alpine:3.20.0 AS dev RUN apk add --no-cache git libc6-compat COPY --from=devbuild /build/nomad-pack /bin/ @@ -34,7 +34,7 @@ CMD ["help"] # =================================== # Release images. # =================================== -FROM alpine:3.15 AS release +FROM alpine:3.20.0 AS release ARG PRODUCT_NAME=nomad-pack ARG PRODUCT_VERSION