Skip to content

Commit ff78cce

Browse files
authored
Merge pull request #53 from giopunt/patch-1
Make explicit use of python3 to fix awscli breaking
2 parents a5fb64a + 06b2a55 commit ff78cce

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM docker:19.03.4
1+
FROM docker:23.0.6
22

33
RUN apk update \
44
&& apk upgrade \
5-
&& apk add --no-cache --update python py-pip coreutils bash \
5+
&& apk add --no-cache --update python3 py3-pip coreutils bash \
66
&& rm -rf /var/cache/apk/* \
7-
&& pip install pyyaml==5.3.1 \
8-
&& pip install -U awscli \
9-
&& apk --purge -v del py-pip
7+
&& pip3 install pyyaml==5.3.1 \
8+
&& pip3 install -U awscli \
9+
&& apk --purge -v del py3-pip
1010

1111
ADD entrypoint.sh /entrypoint.sh
1212

0 commit comments

Comments
 (0)