We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7df3c88 commit 5ee417cCopy full SHA for 5ee417c
Dockerfile
@@ -7,8 +7,9 @@ FROM golang:1.23-alpine
7
RUN apk add --no-cache curl unzip make git build-base && \
8
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
9
unzip awscliv2.zip && \
10
- ./aws/install -i /usr/local/aws-cli -b /usr/local/bin && \
11
- rm -rf aws awscliv2.zip
+ ./aws/install && \
+ rm -rf aws awscliv2.zip && \
12
+ export PATH=$PATH:/usr/local/bin
13
14
# Verify AWS CLI installation
15
RUN aws --version
0 commit comments