Skip to content

Commit

Permalink
fix: use wget instead of curl to install az CLI (#3375)
Browse files Browse the repository at this point in the history
  • Loading branch information
hassy authored Oct 18, 2024
1 parent c34f4e2 commit f1acd0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/artillery/lib/platform/aws-ecs/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y \
libtool \
python3-pip && pip3 install awscli --break-system-packages

RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
RUN wget https://aka.ms/InstallAzureCLIDeb && bash InstallAzureCLIDeb

ARG WORKER_VERSION
ENV WORKER_VERSION=$WORKER_VERSION
Expand Down

0 comments on commit f1acd0d

Please sign in to comment.