Skip to content

Commit acd719f

Browse files
authored
specify pip version to fix oserror 0 of proxy (#3165)
1 parent 10843f3 commit acd719f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docker/cluster-serving/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN apt-get update && \
2424
#python
2525
RUN apt-get install -y python3-minimal && \
2626
apt-get install -y build-essential python3 python3-setuptools python3-dev python3-pip && \
27-
pip3 install --upgrade pip && \
27+
pip3 install --upgrade pip==20.2.4 && \
2828
pip install --upgrade setuptools && \
2929
pip install opencv-python && \
3030
pip install pyyaml && \

docker/hyperzoo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ RUN chmod +x /sbin/tini
7373
#python
7474
RUN apt-get install -y python3-minimal && \
7575
apt-get install -y build-essential python3 python3-setuptools python3-dev python3-pip && \
76-
pip3 install --upgrade pip && \
76+
pip3 install --upgrade pip==20.2.4 && \
7777
pip install --upgrade setuptools && \
7878
pip install numpy scipy && \
7979
pip install --no-binary pandas==0.23.4 -I pandas && \

docker/zoo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RUN wget https://enos.itcollege.ee/~jpoial/allalaadimised/jdk8/jdk-8u261-linux-x
5757
#python
5858
RUN apt-get install -y python3-minimal && \
5959
apt-get install -y build-essential python3 python3-setuptools python3-dev python3-pip && \
60-
pip3 install --upgrade pip && \
60+
pip3 install --upgrade pip==20.2.4 && \
6161
pip install --upgrade setuptools && \
6262
pip install numpy scipy && \
6363
pip install --no-binary pandas -I pandas && \

0 commit comments

Comments
 (0)