Skip to content

Commit

Permalink
Dockerfile_alpine: fix broken pip six installation (OSGeo#1581)
Browse files Browse the repository at this point in the history
Replaces OSGeo#1568 with a better solution by @mmacata, per actinia-org/actinia-core#187
  • Loading branch information
neteler authored and ninsbl committed Oct 26, 2022
1 parent 6ab3770 commit 5096144
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 5096144

Please sign in to comment.