From 5096144a701de7d6dbd1d6e18787f3fb7871b73f Mon Sep 17 00:00:00 2001 From: Markus Neteler Date: Mon, 17 May 2021 07:21:51 +0200 Subject: [PATCH] Dockerfile_alpine: fix broken pip six installation (#1581) Replaces #1568 with a better solution by @mmacata, per https://github.com/mundialis/actinia_core/pull/187 --- docker/alpine/Dockerfile_alpine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/alpine/Dockerfile_alpine b/docker/alpine/Dockerfile_alpine index e82497091e8..c93e6902158 100644 --- a/docker/alpine/Dockerfile_alpine +++ b/docker/alpine/Dockerfile_alpine @@ -195,7 +195,7 @@ COPY --from=build /usr/local/grass* /usr/local/grass/ RUN apk add curl && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py pip==20.0.2 && rm get-pip.py # install external Python API -RUN pip3 install --upgrade grass-session +RUN pip3 install --upgrade pip six grass-session --ignore-installed six RUN ln -s /usr/local/grass /usr/local/grass7 RUN ln -s /usr/local/grass `grass --config path`