From a84510397d7469eab4e03cb22dbbe838bc32f543 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 22 Jul 2024 09:48:55 -0400 Subject: [PATCH] chore(deps): track alpine ca-certificates dep (#4774) Signed-off-by: Rui Chen --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 776dc21126..f35c286a09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -154,10 +154,13 @@ COPY --from=deps /usr/local/bin/conftest /usr/local/bin/conftest COPY --from=deps /usr/bin/git-lfs /usr/bin/git-lfs COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh +# renovate: datasource=repology depName=alpine_3_20/ca-certificates versioning=loose +ENV CA_CERTIFICATES_VERSION="20240705-r0" + # Install packages needed to run Atlantis. # We place this last as it will bust less docker layer caches when packages update RUN apk add --no-cache \ - ca-certificates~=20240705-r0 \ + ca-certificates~=${CA_CERTIFICATES_VERSION} \ curl~=8 \ git~=2 \ unzip~=6 \