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 | `41.43.5-full` -> `41.43.7-full` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>renovatebot/renovate (docker.io/renovate/renovate)</summary> ### [`v41.43.7`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.43.7) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/41.43.5...41.43.7) ##### Documentation - update bitbucket server example version ([#​37198](https://redirect.github.com/renovatebot/renovate/issues/37198)) ([c7b653e](https://redirect.github.com/renovatebot/renovate/commit/c7b653e33951db904d179f43196916be4c41d09e)) ##### Miscellaneous Chores - **deps:** update containerbase/internal-tools action to v3.10.62 (main) ([#​37181](https://redirect.github.com/renovatebot/renovate/issues/37181)) ([015a4aa](https://redirect.github.com/renovatebot/renovate/commit/015a4aa669d9ff1e9ab9986bc36eae8df2c79334)) - **deps:** update dependency typescript-eslint to v8.38.0 (main) ([#​37200](https://redirect.github.com/renovatebot/renovate/issues/37200)) ([1efa265](https://redirect.github.com/renovatebot/renovate/commit/1efa265cc7bbcf449032babd23873642f68f099f)) ##### Build System - **deps:** update dependency validate-npm-package-name to v6.0.2 (main) ([#​37203](https://redirect.github.com/renovatebot/renovate/issues/37203)) ([a486cd1](https://redirect.github.com/renovatebot/renovate/commit/a486cd145c638ca46190d50e6110991b62b49d73)) </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:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
25 lines
1.1 KiB
Docker
25 lines
1.1 KiB
Docker
# hadolint ignore=DL3007
|
|
FROM docker.io/renovate/renovate:41.43.7-full@sha256:3816a98e7ed6e65d8f63876c8665098feef982c3dd7e8bd60f8bf6ec1c4fb6b9
|
|
|
|
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}"
|