mirror of
https://github.com/truecharts/charts.git
synced 2026-07-15 02:51:21 -03:00
25 lines
1.1 KiB
Docker
25 lines
1.1 KiB
Docker
# hadolint ignore=DL3007
|
|
FROM docker.io/renovate/renovate:41.30.3-full@sha256:5a918e5b38f694de9f063b883e3cd9589b12a3f5ef17780c0b4bb02e2d3a2948
|
|
|
|
ARG VERSION
|
|
ARG CONTAINER_NAME
|
|
ARG CONTAINER_VER
|
|
ARG TEST
|
|
|
|
# Download and set up the clustertool binary
|
|
RUN curl -L "https://github.com/truecharts/public/releases/download/v${VERSION}/clustertool_${VERSION}_linux_amd64.tar.gz" -o /tmp/clustertool.tar.gz \
|
|
&& tar -xzvf /tmp/clustertool.tar.gz -C /usr/local/bin \
|
|
&& chmod +x /usr/local/bin/clustertool \
|
|
&& rm /tmp/clustertool.tar.gz
|
|
|
|
|
|
# Maintainer and metadata
|
|
LABEL "maintainer"="TrueCharts <info@truecharts.org>"
|
|
LABEL "org.opencontainers.image.source"="https://github.com/truecharts/apps"
|
|
LABEL org.opencontainers.image.title="${CONTAINER_NAME}"
|
|
LABEL org.opencontainers.image.url="https://truecharts.org/docs/charts/${CONTAINER_NAME}"
|
|
LABEL org.opencontainers.image.version="${CONTAINER_VER}"
|
|
LABEL org.opencontainers.image.description="Container for ${CONTAINER_NAME} by TrueCharts"
|
|
LABEL org.opencontainers.image.authors="TrueCharts"
|
|
LABEL org.opencontainers.image.documentation="https://truecharts.org/docs/charts/${CONTAINER_NAME}"
|