What's Changed
- Update Go to 1.21.4 by @aaw in #141
- Allow to specify sentry envionment and release. by @imperiuse in #140
New Contributors
- @aaw made their first contribution in #141
- @imperiuse made their first contribution in #140
Full Changelog: v0.2.27...v0.2.28
Installation Instructions
supercronic-linux-amd64
Add the following stanza to your Dockerfile to install supercronic-linux-amd64
.
You will need to install curl
beforehand.
# Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.28/supercronic-linux-amd64 \
SUPERCRONIC=supercronic-linux-amd64 \
SUPERCRONIC_SHA1SUM=fe1a81a8a5809deebebbd7a209a3b97e542e2bcd
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.
# Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.28/supercronic-linux-386 \
SUPERCRONIC=supercronic-linux-386 \
SUPERCRONIC_SHA1SUM=6a37b4365698a0f83dc52ebcbad66a4ed1576369
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.
# Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.28/supercronic-linux-arm \
SUPERCRONIC=supercronic-linux-arm \
SUPERCRONIC_SHA1SUM=57cf7d4f0b85255bc45150ff6603358ffdfc3a00
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.
# Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.28/supercronic-linux-arm64 \
SUPERCRONIC=supercronic-linux-arm64 \
SUPERCRONIC_SHA1SUM=6f2247cb06a0845e3e4ae1b5c95e4d0ed0dcfedd
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