We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b3efe1 commit 3455321Copy full SHA for 3455321
Dockerfile
@@ -1,14 +1,13 @@
1
-FROM dnxsolutions/aws:1.22.48-dnx2
+FROM dnxsolutions/aws:2.1.9-dnx1
2
3
WORKDIR /work
4
5
COPY src .
6
7
-# RUN apk add libcurl=7.79.1-r5 \
8
-# && apk add curl=7.79.1-r5 \
9
-# && apk add git=2.32.6-r0 \
10
-# && apk add python3=3.9.16-r0 \
11
-# && apk add python3-dev=3.9.16-r0
+RUN python3 -m pip install --no-cache-dir pip==23.1.2 \
+ && pip install --no-cache-dir awscli==1.27.142 \
+ && pip install --no-cache-dir botocore==1.29.142 \
+ && pip install --no-cache-dir boto3==1.26.142
12
13
ENTRYPOINT [ "python3", "-u" ]
14
0 commit comments