From 21f80c8a907130c2440e5976404c48063b649045 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 7 Dec 2024 13:28:01 +0200 Subject: [PATCH] crond: Update base image to Alpine 3.21. --- crond/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crond/Dockerfile b/crond/Dockerfile index 9b39fa1..b542461 100644 --- a/crond/Dockerfile +++ b/crond/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.20 as downloader +FROM alpine:3.21 as downloader ARG URL=https://github.com/aptible/supercronic/releases/download/v0.2.32/supercronic-linux-amd64 ARG SHA1SUM=7da26ce6ab48d75e97f7204554afe7c80779d4e0 WORKDIR /tmp @@ -8,7 +8,7 @@ RUN wget -q $URL && \ install -m 755 supercronic-linux-amd64 /usr/local/bin/supercronic && \ touch /crontab -FROM alpine:3.20 +FROM alpine:3.21 COPY --from=downloader /usr/local/bin/supercronic /usr/local/bin/supercronic COPY --from=downloader /crontab /crontab WORKDIR /tmp -- GitLab