fix Dockerfile

This commit is contained in:
Wolfgang Hottgenroth 2020-07-17 14:29:32 +02:00
parent 73f4925b2c
commit 74aa53a96a
Signed by: wn
GPG Key ID: B586EAFCDF2F65F4

View File

@ -7,7 +7,10 @@ LABEL AlternativeImageName="wollud1969/docker-bash"
RUN \
apk add --no-cache bash curl git python3 && \
pushd /usr/bin && ln -s python3 python && popd
P=`pwd` && \
cd /usr/bin && \
ln -s python3 python && \
cd $P
CMD [ "bash" ]