From 05e9c2f6ff7266b9c04eb872059230d02b228e04 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 30 Mar 2023 04:37:06 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.17.3 in docker-base/dockerfile.alpine (#3278) * chore(deps): update alpine docker tag to v3.17.3 in docker-base/dockerfile.alpine * Update Dockerfile.alpine * Update Dockerfile.alpine * Update Dockerfile.alpine --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> --- docker-base/Dockerfile.alpine | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-base/Dockerfile.alpine b/docker-base/Dockerfile.alpine index a1f6b02cb8..ff48a8734c 100644 --- a/docker-base/Dockerfile.alpine +++ b/docker-base/Dockerfile.alpine @@ -1,7 +1,7 @@ # This Dockerfile builds our base image with gosu, dumb-init and the atlantis # user. We split this from the main Dockerfile because this base doesn't change # and also because it kept breaking the build due to flakiness. -FROM alpine:3.17.2 +FROM alpine:3.17.3 LABEL authors="Anubhav Mishra, Luke Kysow" # We use gosu to step down from root and run as the atlantis user so we need @@ -25,7 +25,7 @@ ENV GIT_LFS_VERSION=3.3.0 ARG TARGETPLATFORM # Install packages needed for running Atlantis. -RUN apk add git~=2.39 --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main/ && \ +RUN apk add git~=2.40 --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main/ && \ apk add --no-cache \ ca-certificates~=20220614 \ curl~=7.88 \