From 72e2f5afdfeded7dc05e4d1f098fc391065ec31f Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sun, 15 Dec 2024 13:49:29 -0300 Subject: [PATCH] Triggering CI --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c5c0675..8d39a11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM python:alpine RUN apk add --no-cache curl \ - && SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.33/supercronic-linux-amd64 \ && SUPERCRONIC_SHA1SUM=71b0d58cc53f6bd72cf2f293e09e294b79c666d8 \ + && SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.33/supercronic-linux-amd64 \ && curl -fsSLO "$SUPERCRONIC_URL" \ && echo "${SUPERCRONIC_SHA1SUM} supercronic-linux-amd64" | sha1sum -c - \ && chmod +x supercronic-linux-amd64 \