2020-12-30 16:00:46 +00:00
|
|
|
FROM alpine:3.12@sha256:074d3636ebda6dd446d0d00304c4454f468237fdacf08fb0eeac90bdbfa1bac7
|
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
|
|
|
|
ENV GOMPLATE_VERSION="${GOMPLATE_VERSION:-v3.8.0}"
|
|
|
|
# renovate: datasource=github-releases depName=thegeeklab/url-parser
|
2021-01-04 16:18:22 +00:00
|
|
|
ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v0.2.1}"
|
2020-11-01 23:03:33 +00:00
|
|
|
|
2020-12-23 22:45:23 +00:00
|
|
|
RUN apk --update add curl make tar git && \
|
2020-11-01 23:03:33 +00:00
|
|
|
curl -SsL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_linux-amd64-slim" && \
|
|
|
|
curl -SsL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-amd64" && \
|
|
|
|
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 []
|