소스 검색

Docker: Remove custom pip install for Alpine docker (#2028)

This PR simply removes the installation of pip from the Alpine Docker image. In the past, this installation was necessary because there was an issue with pip 20.0.0, so another version was required. This is no longer needed as the Alpine version we use delivers pip 21.3.1.

Fixes #2027.
Carmen Tawalika 3 년 전
부모
커밋
cc3a0f5e5c
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      docker/alpine/Dockerfile

+ 0 - 2
docker/alpine/Dockerfile

@@ -185,8 +185,6 @@ ENV LC_ALL="en_US.UTF-8"
 # Copy GRASS GIS from build image
 COPY --from=build /usr/local/bin/grass /usr/local/bin/grass
 COPY --from=build /usr/local/grass* /usr/local/grass/
-# pip 20.0.0 fix
-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 pip six grass-session --ignore-installed six