alpine-tools/Containerfile.multiarch

57 lines
2.6 KiB
Plaintext

FROM docker.io/node:lts-alpine@sha256:32427bc0620132b2d9e79e405a1b27944d992501a20417a7f407427cc4c2b672
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/container/alpine-tools"
LABEL org.opencontainers.image.source="https://gitea.rknet.org/container/alpine-tools"
LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/container/alpine-tools"
ARG TARGETOS
ARG TARGETARCH
ARG TARGETVARIANT
ARG GOMPLATE_VERSION
ARG URL_PARSER_VERSION
ARG PRETTIER_VERSION
ARG SPELLCHECKER_VERSION
ARG JSBEAUTIFY_VERSION
ARG YAMLLINT_VERSION
# renovate: datasource=github-releases depName=hairyhenderson/gomplate
ENV GOMPLATE_VERSION="${GOMPLATE_VERSION:-v3.11.6}"
# renovate: datasource=github-releases depName=thegeeklab/url-parser
ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v2.0.1}"
# renovate: datasource=npm depName=prettier
ENV PRETTIER_VERSION="${PRETTIER_VERSION:-3.1.0}"
# renovate: datasource=npm depName=spellchecker-cli
ENV SPELLCHECKER_VERSION="${SPELLCHECKER_VERSION:-6.1.1}"
# renovate: datasource=npm depName=js-beautify
ENV JSBEAUTIFY_VERSION="${JSBEAUTIFY_VERSION:-1.14.11}"
# renovate: datasource=pypi depName=yamllint
ENV YAMLLINT_VERSION="${YAMLLINT_VERSION:-1.33.0}"
# renovate: datasource=github-releases depName=yannh/kubeconform
ENV KUBECONFORM_VERSION="${KUBECONFORM_VERSION:-v0.6.4}"
RUN apk --update add --no-cache python3 py3-pip curl make tar git bash && \
apk --no-cache upgrade libcrypto3 libssl3 && \
curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_${TARGETOS}-${TARGETARCH}${TARGETVARIANT}" && \
curl -SsfL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-${TARGETOS}-${TARGETARCH}${TARGETVARIANT//v/-}" && \
curl -SsfL -o /usr/local/bin/openapi2jsonschema "https://raw.githubusercontent.com/yannh/kubeconform/${KUBECONFORM_VERSION}/scripts/openapi2jsonschema.py" && \
chmod 755 /usr/local/bin/gomplate && \
chmod 755 /usr/local/bin/url-parser && \
chmod 755 /usr/local/bin/openapi2jsonschema && \
npm install -q --location=global \
"prettier@$PRETTIER_VERSION" \
"spellchecker-cli@$SPELLCHECKER_VERSION" \
"js-beautify@$JSBEAUTIFY_VERSION" && \
pip install -qq --no-cache-dir yamllint=="$YAMLLINT_VERSION" && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*
ADD overlay/ /
STOPSIGNAL SIGTERM
CMD []