From 3ed9041bfa6b6c96d8148cb38a6f4700a4741f41 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 13:03:19 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.20.3 --- Dockerfile | 2 +- Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c9f9139..73eecc0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.20.2 +FROM alpine:3.20.3 # Copy the binary that goreleaser built COPY fleetdb /fleetdb diff --git a/Dockerfile.dev b/Dockerfile.dev index 1bca6593..f85d3467 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -26,7 +26,7 @@ RUN export LDFLAG_LOCATION="go.infratographer.com/x/versionx" && \ # Use the official Alpine image for a lean production container. # https://hub.docker.com/_/alpine # https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds -FROM alpine:3.20.1 +FROM alpine:3.20.3 RUN apk add --no-cache ca-certificates # Copy the binary to the production image from the builder stage.