Skip to content

Commit 6573dfd

Browse files
authored
Update setup Dockerfile - adjust helm tarball path (#484)
* Update setup Dockerfile - adjust helm tarball path * Correct missing chained run tag
1 parent c79799e commit 6573dfd

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

docker/setup/Dockerfile

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ ENV NGINX_INGRESS_VERSION="0.3.7"
99
RUN apk add -q --no-cache \
1010
jq=1.5-r2 \
1111
sshpass=1.05-r0 \
12-
curl=7.59.0-r0 && \
13-
curl -sLfO "https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-linux-amd64.tar.gz" && \
14-
tar xf "helm-v${HELM_VERSION}-linux-amd64.tar.gz" && \
15-
mv "linux-amd64/helm" /usr/local/bin/helm && \
16-
chmod +x /usr/local/bin/helm && \
17-
rm -rf "linux-amd64" "helm-v${HELM_VERSION}-linux-amd64.tar.gz" && \
18-
az aks install-cli --client-version "${KUBECTL_VERSION}" && \
19-
mkdir /secrets
12+
&& wget -q "https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz" \
13+
&& tar xf "helm-v${HELM_VERSION}-linux-amd64.tar.gz" \
14+
&& mv "linux-amd64/helm" /usr/local/bin/helm \
15+
&& chmod +x /usr/local/bin/helm \
16+
&& rm -rf "linux-amd64" "helm-v${HELM_VERSION}-linux-amd64.tar.gz" \
17+
&& az aks install-cli --client-version "${KUBECTL_VERSION}" \
18+
&& mkdir /secrets
2019

2120
COPY docker/setup/requirements.txt ./
2221
RUN pip install --no-cache-dir -r requirements.txt

0 commit comments

Comments
 (0)