2021-03-31 19:01:09 +00:00
|
|
|
FROM arm32v7/alpine:3.13@sha256:59b46c319f3b66dfda96faafd0c6959e9b2f409792d0236204f270dfd0235960
|
2020-11-01 23:03:33 +00:00
|
|
|
|
2020-12-20 21:47:44 +00:00
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
LABEL org.opencontainers.image.title="alpine-tools"
|
|
|
|
LABEL org.opencontainers.image.url="https://gitea.rknet.org/docker/alpine-tools"
|
|
|
|
LABEL org.opencontainers.image.source="https://gitea.rknet.org/docker/alpine-tools"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/alpine-tools"
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
ARG GOMPLATE_VERSION
|
|
|
|
ARG SUPERCRONIC_VERSION
|
|
|
|
ARG URL_PARSER_VERSION
|
|
|
|
|
|
|
|
# renovate: datasource=github-releases depName=hairyhenderson/gomplate
|
2021-01-29 13:01:26 +00:00
|
|
|
ENV GOMPLATE_VERSION="${GOMPLATE_VERSION:-v3.9.0}"
|
2020-11-01 23:03:33 +00:00
|
|
|
# renovate: datasource=github-releases depName=thegeeklab/url-parser
|
2021-04-09 09:03:22 +00:00
|
|
|
ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v0.2.3}"
|
2020-11-01 23:03:33 +00:00
|
|
|
|
2020-12-23 22:45:23 +00:00
|
|
|
RUN apk --update add curl make tar git && \
|
2021-02-15 20:35:07 +00:00
|
|
|
curl -SsL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_linux-armv7-slim" && \
|
|
|
|
curl -SsL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-arm-7" && \
|
2020-11-01 23:03:33 +00:00
|
|
|
chmod 755 /usr/local/bin/gomplate && \
|
|
|
|
chmod 755 /usr/local/bin/url-parser && \
|
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
|
|
|
ADD overlay/ /
|
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
|
|
|
|
CMD []
|