Files
truecharts/containers/apps/renovate/Dockerfile
T
TrueCharts BotandGitHub f16efdbc98 chore(container): update docker.io/renovate/renovate docker tag to v41.115.6 (#39637)
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.115.5-full` -> `41.115.6-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.115.6`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.115.6)

[Compare
Source](https://redirect.github.com/renovatebot/renovate/compare/41.115.5...41.115.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v10.44.5
(main)
([#&#8203;38065](https://redirect.github.com/renovatebot/renovate/issues/38065))
([e807895](https://redirect.github.com/renovatebot/renovate/commit/e8078954e05866e933c58e8b079484bcf00236e9))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to
v13.13.5 (main)
([#&#8203;38064](https://redirect.github.com/renovatebot/renovate/issues/38064))
([61d6dc1](https://redirect.github.com/renovatebot/renovate/commit/61d6dc125c2ec9e41686a762a073eb8b66dcc7d5))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-17 12:16:29 +02:00

25 lines
1.1 KiB
Docker

# hadolint ignore=DL3007
FROM docker.io/renovate/renovate:41.115.6-full@sha256:de16e339e1951432276b547482fbedad4f1cfe9ea660be5a4f29756eeff2013d
ARG VERSION
ARG CONTAINER_NAME
ARG CONTAINER_VER
ARG TEST
# Download and set up the clustertool binary
RUN curl -L "https://github.com/trueforge-org/truecharts/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}"