File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ RUN set -ex; \
9
9
); \
10
10
\
11
11
export DEBIAN_FRONTEND=noninteractive; \
12
- runDeps='ca-certificates curl git jq unzip findutils patch xz-utils' ; \
12
+ runDeps='ca-certificates curl git jq unzip findutils patch xz-utils gpg apt-transport-https ' ; \
13
13
buildDeps='' ; \
14
14
apt-get update && apt-get install -y $runDeps $buildDeps --no-install-recommends; \
15
15
\
@@ -43,7 +43,14 @@ COPY bin/y-kustomize /usr/local/src/ystack/bin/
43
43
RUN y-kustomize version
44
44
45
45
COPY bin/y-helm /usr/local/src/ystack/bin/
46
- RUN y-helm version --client=true
46
+ # RUN y-helm version --client=true
47
+ RUN curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg > /dev/null \
48
+ && echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list \
49
+ && apt-get update \
50
+ && apt-get install helm \
51
+ && helm version --client=true \
52
+ && ln -s $(which helm) /usr/local/src/ystack/bin/helm \
53
+ && y-helm version --client=true
47
54
48
55
COPY bin/y-buildctl /usr/local/src/ystack/bin/
49
56
RUN y-buildctl --version
You can’t perform that action at this time.
0 commit comments