This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [docker.io/renovate/renovate](https://renovatebot.com) ([source](https://redirect.github.com/renovatebot/renovate)) | final | patch | `39.245.2-full` -> `39.245.3-full` | --- ### Release Notes <details> <summary>renovatebot/renovate (docker.io/renovate/renovate)</summary> ### [`v39.245.3`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.245.3) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.245.2...39.245.3) ##### Bug Fixes - **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.58.7 (main) ([#​35407](https://redirect.github.com/renovatebot/renovate/issues/35407)) ([a28a5e0](https://redirect.github.com/renovatebot/renovate/commit/a28a5e0336d1ead25fddba8ab357f87a1b3f871f)) ##### Miscellaneous Chores - **deps:** update dependency [@​vitest/eslint-plugin](https://redirect.github.com/vitest/eslint-plugin) to v1.1.40 (main) ([#​35404](https://redirect.github.com/renovatebot/renovate/issues/35404)) ([b11d378](https://redirect.github.com/renovatebot/renovate/commit/b11d378a983efe9c8e160a13f182dbb07ef68e34)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
25 lines
1.1 KiB
Docker
25 lines
1.1 KiB
Docker
# hadolint ignore=DL3007
|
|
FROM docker.io/renovate/renovate:39.245.3-full@sha256:4e9514a6b439bd26930cd502d42c32ab2906881c09f7c87f0c228eee850844e0
|
|
|
|
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}"
|