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 145c818 commit 6ba45b2Copy full SHA for 6ba45b2
aws-cli/Dockerfile
@@ -6,6 +6,12 @@ ARG USER_NAME=default
6
ARG USER_HOME=/home/default
7
ARG USER_ID=1000
8
9
+# Upgrade python to 3.8 (best we can do with Amazon Linux 2)
10
+RUN yum remove python3 \
11
+ && amazon-linux-extras install python3.8 \
12
+ && ln -s /usr/bin/python3.8 /usr/bin/python3 \
13
+ && ln -s /usr/bin/pydoc3.8 /usr/bin/pydoc
14
+
15
# hadolint ignore=DL3033
16
RUN yum update -y \
17
&& yum install -y bash curl git jq make python3-pip tar unzip xmlstarlet zip \
0 commit comments