Skip to content

Commit 8dd1c27

Browse files
committed
feat: Provide aws-cli in container image (#238)
Signed-off-by: jannfis <[email protected]>
1 parent 71b1dac commit 8dd1c27

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ RUN mkdir -p dist && \
1212

1313
FROM alpine:latest
1414

15-
RUN apk update && apk upgrade && apk add git openssh-client
15+
RUN apk update && \
16+
apk upgrade && \
17+
apk add git openssh-client python3 py3-pip && \
18+
pip3 install --upgrade pip && \
19+
pip3 install awscli && \
20+
rm -rf /var/cache/apk/*
1621

1722
RUN mkdir -p /usr/local/bin
1823
RUN mkdir -p /app/config

0 commit comments

Comments
 (0)