Skip to content

Commit

Permalink
Dockerfile_alpine: fix broken pip six installation (#1581)
Browse files Browse the repository at this point in the history
Replaces #1568 with a better solution by @mmacata, per actinia-org/actinia-core#187
  • Loading branch information
neteler committed May 17, 2021
1 parent d580243 commit 05fb4d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/alpine/Dockerfile_alpine
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 05fb4d4

Please sign in to comment.