Commit 7eaa0f45 authored by nimrod's avatar nimrod
Browse files

Updates.

- Update to Supercronic v0.1.9.
- Update to Alpine Linux v3.10.
parent 50a6b222
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
FROM alpine:3.9 as downloader
ARG URL=https://github.com/aptible/supercronic/releases/download/v0.1.8/supercronic-linux-amd64
ARG SHA1SUM=be43e64c45acd6ec4fce5831e03759c89676a0ea
FROM alpine:3.10 as downloader
ARG URL=https://github.com/aptible/supercronic/releases/download/v0.1.9/supercronic-linux-amd64
ARG SHA1SUM=5ddf8ea26b56d4a7ff6faecdd8966610d5cb9d85
RUN cd /tmp && \
    wget $URL && \
    echo "$SHA1SUM  supercronic-linux-amd64" > sha1.sum && \
@@ -8,7 +8,7 @@ RUN cd /tmp && \
    install -m 755 supercronic-linux-amd64 /usr/local/bin/supersonic && \
    touch /crontab

FROM alpine:3.9
FROM alpine:3.10
COPY --from=downloader /usr/local/bin/supersonic /usr/local/bin/supersonic
COPY --from=downloader /crontab /crontab
WORKDIR /tmp