85adb6cb2a
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | ghcr.io/onedr0p/cluster-template/devcontainer | final | pinDigest | -> `cde0b11` | | [tccr.io/tccr/devcontainer](https://redirect.github.com/truecharts/public) | image | pinDigest | -> `587f3d8` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xNDIuNSIsInVwZGF0ZWRJblZlciI6IjM4LjE0Mi41IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
28 lines
1.2 KiB
Docker
28 lines
1.2 KiB
Docker
# hadolint ignore=DL3007
|
|
FROM ghcr.io/onedr0p/cluster-template/devcontainer:latest@sha256:cde0b1128fc417cd14017c9c2ee97f9daf7b3caac9cc5fdc53409ec0910f5f54
|
|
|
|
ARG VERSION
|
|
ARG CONTAINER_NAME
|
|
ARG CONTAINER_VER
|
|
|
|
# Download and set up the 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
|
|
|
|
ENTRYPOINT ["clustertool"]
|
|
CMD ["--help"]
|
|
|
|
|
|
# Maintainer and metadata
|
|
LABEL "maintainer"="TrueCharts <info@truecharts.org>"
|
|
LABEL "org.opencontainers.image.source"="https://github.com/truecharts/apps"
|
|
LABEL org.opencontainers.image.licenses="All-Rights-Reserved"
|
|
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}"
|