From ed484817722f51169144ad708b761d0ceee9b431 Mon Sep 17 00:00:00 2001 From: Hang Date: Mon, 23 Oct 2023 16:01:37 +0800 Subject: [PATCH] Minor fix --- alpine.dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alpine.dockerfile b/alpine.dockerfile index 233dc207d69..9773dc70e1b 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -27,9 +27,9 @@ LABEL maintainer="Microsoft" \ # ca-certificates bash bash-completion jq jp openssh-keygen - for convenience -# libintl icu-libs - required by azure-devops https://github.com/Azure/azure-cli/pull/9683 +# libintl icu-libs - required by azure-devops extension https://github.com/Azure/azure-cli/pull/9683 # libc6-compat - required by az storage blob sync https://github.com/Azure/azure-cli/issues/10381 -# gcc python3-dev musl-dev linux-headers libffi-dev - temporarily required by psutil +# gcc musl-dev linux-headers libffi-dev - temporarily required by psutil # curl - temporarily required by jp ARG JP_VERSION="0.2.1" @@ -37,7 +37,7 @@ ARG JP_VERSION="0.2.1" WORKDIR azure-cli COPY . /azure-cli RUN 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 python3-dev musl-dev linux-headers libffi-dev curl \ + && apk add --no-cache --virtual .build-deps gcc musl-dev linux-headers libffi-dev curl \ && update-ca-certificates && ./scripts/install_full.sh && python ./scripts/trim_sdk.py \ && cat /azure-cli/az.completion > ~/.bashrc \ && dos2unix /root/.bashrc /usr/local/bin/az \