Loading Dockerfile +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 && \ Loading @@ -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 Loading Loading
Dockerfile +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 && \ Loading @@ -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 Loading