From fac5f24ed9d8d1bb18e2b7a66f79f0e66f7f3083 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Fri, 14 Apr 2023 21:34:35 +0300
Subject: [PATCH] crond: Updates.

- Update Supercronic.
- Update the base image.
---
 crond/Dockerfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/crond/Dockerfile b/crond/Dockerfile
index 6663f0a..2263307 100644
--- a/crond/Dockerfile
+++ b/crond/Dockerfile
@@ -1,6 +1,6 @@
-FROM alpine:3.16 as downloader
-ARG URL=https://github.com/aptible/supercronic/releases/download/v0.2.1/supercronic-linux-amd64
-ARG SHA1SUM=d7f4c0886eb85249ad05ed592902fa6865bb9d70
+FROM alpine:3.17 as downloader
+ARG URL=https://github.com/aptible/supercronic/releases/download/v0.2.3/supercronic-linux-amd64
+ARG SHA1SUM=dbed853c06aba2c611bbb1955b2c1667b51dcb0a
 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.16
+FROM alpine:3.17
 COPY --from=downloader /usr/local/bin/supercronic /usr/local/bin/supercronic
 COPY --from=downloader /crontab /crontab
 WORKDIR /tmp
-- 
GitLab