File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,18 @@ ARG BASE_OS_IMAGE
22FROM ${BASE_OS_IMAGE}
33
44ARG ARCH=amd64
5- RUN curl -sfL https://github.com/rancher/wharfie/releases/download/v0.6.8/wharfie-${ARCH} -o /usr/bin/wharfie && chmod +x /usr/bin/wharfie
5+
6+ # renovate: datasource=github-release-attachments depName=rancher/wharfie
7+ ARG WHARFIE_VERSION=v0.6.8
8+ # renovate: datasource=github-release-attachments depName=rancher/wharfie digestVersion=v0.6.8
9+ ARG WHARFIE_SUM_amd64=e6b5d27e5b5815ece828e3d2f4012ccec1e40dceb4e639815d6cdbc0f22e2fa8
10+ # renovate: datasource=github-release-attachments depName=rancher/wharfie digestVersion=v0.6.8
11+ ARG WHARFIE_SUM_arm64=36e50fdd08577cd2adea613141c58830cb73ab4d46ef3f90db62337075518a2d
12+ ENV WHARFIE_SUM="WHARFIE_SUM_${ARCH}"
13+
14+ RUN curl -sfL https://github.com/rancher/wharfie/releases/download/${WHARFIE_VERSION}/wharfie-${ARCH} -o /usr/bin/wharfie \
15+ && echo "${!WHARFIE_SUM}" /usr/bin/wharfie | sha256sum -c - \
16+ && chmod +x /usr/bin/wharfie
617
718COPY files/ /
819RUN chmod 0600 /system/oem/*
You can’t perform that action at this time.
0 commit comments