Skip to content

Commit

Permalink
Merge pull request #53 from giopunt/patch-1
Browse files Browse the repository at this point in the history
Make explicit use of python3 to fix awscli breaking
  • Loading branch information
kciter authored Mar 1, 2024
2 parents a5fb64a + 06b2a55 commit ff78cce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM docker:19.03.4
FROM docker:23.0.6

RUN apk update \
&& apk upgrade \
&& apk add --no-cache --update python py-pip coreutils bash \
&& apk add --no-cache --update python3 py3-pip coreutils bash \
&& rm -rf /var/cache/apk/* \
&& pip install pyyaml==5.3.1 \
&& pip install -U awscli \
&& apk --purge -v del py-pip
&& pip3 install pyyaml==5.3.1 \
&& pip3 install -U awscli \
&& apk --purge -v del py3-pip

ADD entrypoint.sh /entrypoint.sh

Expand Down

0 comments on commit ff78cce

Please sign in to comment.