add pip, xmltodict and pyyaml

This commit is contained in:
2020-12-02 19:23:15 +01:00
parent 7b7b390dd8
commit 965830fd54
2 changed files with 5 additions and 6 deletions

View File

@ -6,11 +6,10 @@ LABEL AlternativeImageName="wollud1969/docker-bash"
RUN \
apk add --no-cache bash curl git python3 gawk sed && \
P=`pwd` && \
cd /usr/bin && \
ln -s python3 python && \
cd $P
apk add --no-cache bash curl git python3 gawk sed py3-pip && \
( cd /usr/bin && ln -s python3 python ) && \
pip install xmltodict && \
pip install pyyaml
CMD [ "bash" ]