v0.1.4
Installation Instructions
supercronic-linux-amd64
Add the following stanza to your Dockerfile to install supercronic-linux-amd64
.
You will need to install curl
beforehand.
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.4/supercronic-linux-amd64 \
SUPERCRONIC=supercronic-linux-amd64 \
SUPERCRONIC_SHA1SUM=3a631023f9f9dd155cfa0d1bb517a063d375055a
RUN curl -fsSLO "$SUPERCRONIC_URL" \
&& echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \
&& chmod +x "$SUPERCRONIC" \
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic
supercronic-linux-386
Add the following stanza to your Dockerfile to install supercronic-linux-386
.
You will need to install curl
beforehand.
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.4/supercronic-linux-386 \
SUPERCRONIC=supercronic-linux-386 \
SUPERCRONIC_SHA1SUM=d12b866f53714932c455e173096aefb3172e12b1
RUN curl -fsSLO "$SUPERCRONIC_URL" \
&& echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \
&& chmod +x "$SUPERCRONIC" \
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic
supercronic-linux-arm
Add the following stanza to your Dockerfile to install supercronic-linux-arm
.
You will need to install curl
beforehand.
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.4/supercronic-linux-arm \
SUPERCRONIC=supercronic-linux-arm \
SUPERCRONIC_SHA1SUM=02039c3d4d7e74658be8f1ae911686dbc28c4a4a
RUN curl -fsSLO "$SUPERCRONIC_URL" \
&& echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \
&& chmod +x "$SUPERCRONIC" \
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic
supercronic-linux-arm64
Add the following stanza to your Dockerfile to install supercronic-linux-arm64
.
You will need to install curl
beforehand.
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.4/supercronic-linux-arm64 \
SUPERCRONIC=supercronic-linux-arm64 \
SUPERCRONIC_SHA1SUM=278fc93d58e93e2746bd9fb0bbd955eaf8addd64
RUN curl -fsSLO "$SUPERCRONIC_URL" \
&& echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \
&& chmod +x "$SUPERCRONIC" \
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic