From 48702b18c0e7fd522a6b8696631af2929697a8cd Mon Sep 17 00:00:00 2001 From: Hang Lei Date: Mon, 22 Jul 2024 14:46:50 +0800 Subject: [PATCH] Init --- alpine.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine.dockerfile b/alpine.dockerfile index dbc8756e2e9..6be4f640f0a 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -36,7 +36,7 @@ ARG JP_VERSION="0.2.1" RUN --mount=type=bind,target=/azure-cli,source=./,rw apk add --no-cache ca-certificates bash bash-completion libintl icu-libs libc6-compat jq openssh-keygen \ && apk add --no-cache --virtual .build-deps gcc musl-dev linux-headers libffi-dev curl \ - && update-ca-certificates && cd /azure-cli && ./scripts/install_full.sh && python ./scripts/trim_sdk.py \ + && update-ca-certificates && pip install --upgrade pip setuptools && cd /azure-cli && ./scripts/install_full.sh && python ./scripts/trim_sdk.py \ && cat /azure-cli/az.completion > ~/.bashrc \ && dos2unix /root/.bashrc /usr/local/bin/az \ && arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) && curl -L https://github.com/jmespath/jp/releases/download/${JP_VERSION}/jp-linux-$arch -o /usr/local/bin/jp \