From 74aa53a96a62a367c3d6cb6512fd879554b10e46 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Fri, 17 Jul 2020 14:29:32 +0200 Subject: [PATCH] fix Dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 29d1212..8557604 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" ]