File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,13 @@ ENV NGINX_INGRESS_VERSION="0.3.7"
99RUN 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
2120COPY docker/setup/requirements.txt ./
2221RUN pip install --no-cache-dir -r requirements.txt
You can’t perform that action at this time.
0 commit comments