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 00079fc commit ed61170Copy full SHA for ed61170
Dockerfile
@@ -4,12 +4,8 @@
4
FROM golang:1.23-alpine
5
6
### Install dependent packages
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
- export PATH="/usr/local/bin:$PATH" && \
12
- rm -rf aws awscliv2.zip
+RUN apk update && apk add --no-cache curl unzip make git build-base aws-cli && \
+ rm -rf /var/cache/apk/*
13
14
# Verify AWS CLI installation
15
RUN aws --version
0 commit comments