Files
charts/containers/apps/devcontainer/Dockerfile
TrueCharts Bot 0139304ef5 chore(container): update ghcr.io/onedr0p/cluster-template/devcontainer:latest docker digest to bc8d9d5 (#29750)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| ghcr.io/onedr0p/cluster-template/devcontainer | final | digest |
`ac3e113` -> `bc8d9d5` |

---

> [!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**: 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xNDIuNyIsInVwZGF0ZWRJblZlciI6IjM4LjE0Mi43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2024-11-24 02:47:03 +01:00

46 lines
1.8 KiB
Docker

# hadolint ignore=DL3007
FROM ghcr.io/onedr0p/cluster-template/devcontainer:latest@sha256:bc8d9d5e35fde58602890e9b3c81a848236bc73e10c156343c92474c705c4062
ARG VERSION
ARG CONTAINER_NAME
ARG CONTAINER_VER
# hadolint ignore=DL3008,DL3015,SC2086,SC2155
RUN \
apk update && \
apk --no-cache update && \
apk --no-cache add \
sshfs && \
rm -rf /var/cache/apk/* /tmp/* /var/tmp/*
# 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
# Download and set up the krew binary
RUN curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/latest/download/krew-linux_amd64.tar.gz" \
&& tar zxvf "krew-linux_amd64.tar.gz" \
&& ./"krew-linux_amd64" install krew \
&& rm ./krew-linux_amd64.tar.gz
ENV PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
# add pvmounter to kubectl using crew
RUN kubectl krew install pv-mounter
# Needed for clustertool binaries
RUN apk add libc6-compat
# 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}"