From b5016621e91084e67c6fa9f7b78d38c79ca85abe Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Fri, 23 Jun 2023 23:01:27 +0300
Subject: [PATCH] crond: updates.

- Update to Alpine 3.18.
- Update to Supercronic v0.2.25.
---
 crond/Dockerfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/crond/Dockerfile b/crond/Dockerfile
index 8496458..58bfa56 100644
--- a/crond/Dockerfile
+++ b/crond/Dockerfile
@@ -1,6 +1,6 @@
-FROM alpine:3.17 as downloader
-ARG URL=https://github.com/aptible/supercronic/releases/download/v0.2.23/supercronic-linux-amd64
-ARG SHA1SUM=dbed853c06aba2c611bbb1955b2c1667b51dcb0a
+FROM alpine:3.18 as downloader
+ARG URL=https://github.com/aptible/supercronic/releases/download/v0.2.25/supercronic-linux-amd64
+ARG SHA1SUM=642f4f5a2b67f3400b5ea71ff24f18c0a7d77d49
 WORKDIR /tmp
 RUN wget -q $URL && \
     echo "$SHA1SUM  supercronic-linux-amd64" > sha1.sum && \
@@ -8,7 +8,7 @@ RUN wget -q $URL && \
     install -m 755 supercronic-linux-amd64 /usr/local/bin/supercronic && \
     touch /crontab
 
-FROM alpine:3.17
+FROM alpine:3.18
 COPY --from=downloader /usr/local/bin/supercronic /usr/local/bin/supercronic
 COPY --from=downloader /crontab /crontab
 WORKDIR /tmp
-- 
GitLab