diff --git a/tools/Dockerfile.cuda10.1-cudnn7-gcc54.devel b/tools/Dockerfile.cuda10.1-cudnn7-gcc54.devel index ca45336add8cb28805ffb2fe9b0381096a0a2295..0d42813368b5a64955af171c9147524288166120 100644 --- a/tools/Dockerfile.cuda10.1-cudnn7-gcc54.devel +++ b/tools/Dockerfile.cuda10.1-cudnn7-gcc54.devel @@ -66,6 +66,12 @@ RUN wget -q https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz && \ CFLAGS="-Wformat" ./configure --prefix=/usr/local/ --enable-shared > /dev/null && \ make -j8 > /dev/null && make altinstall > /dev/null && ldconfig && cd .. && rm -rf Python-3.8.0* +# Install Python3.9 +RUN wget -q https://www.python.org/ftp/python/3.9.0/Python-3.9.0.tgz && \ + tar -xzf Python-3.9.0.tgz && cd Python-3.9.0 && \ + CFLAGS="-Wformat" ./configure --prefix=/usr/local/ --enable-shared > /dev/null && \ + make -j8 > /dev/null && make altinstall > /dev/null && ldconfig && cd .. && rm -rf Python-3.9.0* + ENV LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH} RUN ln -sf /usr/local/bin/python3.6 /usr/local/bin/python3 && ln -sf /usr/local/bin/python3.6 /usr/bin/python3 && ln -sf /usr/local/bin/pip3.6 /usr/local/bin/pip3 && ln -sf /usr/local/bin/pip3.6 /usr/bin/pip3 @@ -121,10 +127,13 @@ RUN wget https://paddle-ci.gz.bcebos.com/ccache-3.7.9.tar.gz && \ make -j8 && make install && \ ln -s /usr/local/ccache-3.7.9/bin/ccache /usr/local/bin/ccache -RUN python3.8 -m pip install --upgrade pip requests && \ - python3.7 -m pip install --upgrade pip requests && \ - python3.6 -m pip install --upgrade pip requests +# Update pip version +RUN python3.8 -m pip install --upgrade pip==21.3.1 requests && \ + python3.7 -m pip install --upgrade pip==21.3.1 requests && \ + python3.6 -m pip install --upgrade pip==21.3.1 requests && \ + python3.9 -m pip install --upgrade pip==21.3.1 requests +# Wget ssl libs and link thems RUN wget https://paddle-serving.bj.bcebos.com/others/centos_ssl.tar && \ tar xf centos_ssl.tar && rm -rf centos_ssl.tar && \ mv libcrypto.so.1.0.2k /usr/lib/libcrypto.so.1.0.2k && mv libssl.so.1.0.2k /usr/lib/libssl.so.1.0.2k && \ diff --git a/tools/Dockerfile.cuda10.1-cudnn7.devel b/tools/Dockerfile.cuda10.1-cudnn7.devel index 1ed462ec4c1df845bc461577d97c3fee7d5852d6..4f1417f0b89059a40cdb6667466dd445bc3cb869 100644 --- a/tools/Dockerfile.cuda10.1-cudnn7.devel +++ b/tools/Dockerfile.cuda10.1-cudnn7.devel @@ -77,6 +77,12 @@ RUN wget -q https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz && \ CFLAGS="-Wformat" ./configure --prefix=/usr/local/ --enable-shared > /dev/null && \ make -j8 > /dev/null && make altinstall > /dev/null && ldconfig && cd .. && rm -rf Python-3.8.0* +# Install Python3.9 +RUN wget -q https://www.python.org/ftp/python/3.9.0/Python-3.9.0.tgz && \ + tar -xzf Python-3.9.0.tgz && cd Python-3.9.0 && \ + CFLAGS="-Wformat" ./configure --prefix=/usr/local/ --enable-shared > /dev/null && \ + make -j8 > /dev/null && make altinstall > /dev/null && ldconfig && cd .. && rm -rf Python-3.9.0* + ENV LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH} RUN ln -sf /usr/local/bin/python3.6 /usr/local/bin/python3 && ln -sf /usr/local/bin/python3.6 /usr/bin/python3 && ln -sf /usr/local/bin/pip3.6 /usr/local/bin/pip3 && ln -sf /usr/local/bin/pip3.6 /usr/bin/pip3 @@ -132,10 +138,13 @@ RUN wget https://paddle-ci.gz.bcebos.com/ccache-3.7.9.tar.gz && \ make -j8 && make install && \ ln -s /usr/local/ccache-3.7.9/bin/ccache /usr/local/bin/ccache -RUN python3.8 -m pip install --upgrade pip==21.1.1 requests && \ - python3.7 -m pip install --upgrade pip==21.1.1 requests && \ - python3.6 -m pip install --upgrade pip==21.1.1 requests +# Update pip version +RUN python3.8 -m pip install --upgrade pip==21.3.1 requests && \ + python3.7 -m pip install --upgrade pip==21.3.1 requests && \ + python3.6 -m pip install --upgrade pip==21.3.1 requests && \ + python3.9 -m pip install --upgrade pip==21.3.1 requests +# Wget ssl libs and link thems RUN wget https://paddle-serving.bj.bcebos.com/others/centos_ssl.tar && \ tar xf centos_ssl.tar && rm -rf centos_ssl.tar && \ mv libcrypto.so.1.0.2k /usr/lib/libcrypto.so.1.0.2k && mv libssl.so.1.0.2k /usr/lib/libssl.so.1.0.2k && \ diff --git a/tools/Dockerfile.cuda10.2-cudnn7.devel b/tools/Dockerfile.cuda10.2-cudnn7.devel index eee59b6e43ac18fc645dfb9c8399b33dff9f0e6d..faa299ad1f2a515010d197af252f5cc957f84544 100644 --- a/tools/Dockerfile.cuda10.2-cudnn7.devel +++ b/tools/Dockerfile.cuda10.2-cudnn7.devel @@ -77,6 +77,12 @@ RUN wget -q https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz && \ CFLAGS="-Wformat" ./configure --prefix=/usr/local/ --enable-shared > /dev/null && \ make -j8 > /dev/null && make altinstall > /dev/null && ldconfig && cd .. && rm -rf Python-3.8.0* +# Install Python3.9 +RUN wget -q https://www.python.org/ftp/python/3.9.0/Python-3.9.0.tgz && \ + tar -xzf Python-3.9.0.tgz && cd Python-3.9.0 && \ + CFLAGS="-Wformat" ./configure --prefix=/usr/local/ --enable-shared > /dev/null && \ + make -j8 > /dev/null && make altinstall > /dev/null && ldconfig && cd .. && rm -rf Python-3.9.0* + ENV LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH} RUN ln -sf /usr/local/bin/python3.6 /usr/local/bin/python3 && ln -sf /usr/local/bin/python3.6 /usr/bin/python3 && ln -sf /usr/local/bin/pip3.6 /usr/local/bin/pip3 && ln -sf /usr/local/bin/pip3.6 /usr/bin/pip3 @@ -132,10 +138,13 @@ RUN wget https://paddle-ci.gz.bcebos.com/ccache-3.7.9.tar.gz && \ make -j8 && make install && \ ln -s /usr/local/ccache-3.7.9/bin/ccache /usr/local/bin/ccache -RUN python3.8 -m pip install --upgrade pip==21.1.1 requests && \ - python3.7 -m pip install --upgrade pip==21.1.1 requests && \ - python3.6 -m pip install --upgrade pip==21.1.1 requests +# Update pip version +RUN python3.8 -m pip install --upgrade pip==21.3.1 requests && \ + python3.7 -m pip install --upgrade pip==21.3.1 requests && \ + python3.6 -m pip install --upgrade pip==21.3.1 requests && \ + python3.9 -m pip install --upgrade pip==21.3.1 requests +# Wget ssl libs and link thems RUN wget https://paddle-serving.bj.bcebos.com/others/centos_ssl.tar && \ tar xf centos_ssl.tar && rm -rf centos_ssl.tar && \ mv libcrypto.so.1.0.2k /usr/lib/libcrypto.so.1.0.2k && mv libssl.so.1.0.2k /usr/lib/libssl.so.1.0.2k && \ diff --git a/tools/Dockerfile.cuda10.2-cudnn8.devel b/tools/Dockerfile.cuda10.2-cudnn8.devel index 5ba14c77c3ed3f479db5e05e9c9fbc8e6468dab6..c6278160c9d4122b951ab6b22ec06fe5ffeddc5e 100644 --- a/tools/Dockerfile.cuda10.2-cudnn8.devel +++ b/tools/Dockerfile.cuda10.2-cudnn8.devel @@ -77,6 +77,12 @@ RUN wget -q https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz && \ CFLAGS="-Wformat" ./configure --prefix=/usr/local/ --enable-shared > /dev/null && \ make -j8 > /dev/null && make altinstall > /dev/null && ldconfig && cd .. && rm -rf Python-3.8.0* +# Install Python3.9 +RUN wget -q https://www.python.org/ftp/python/3.9.0/Python-3.9.0.tgz && \ + tar -xzf Python-3.9.0.tgz && cd Python-3.9.0 && \ + CFLAGS="-Wformat" ./configure --prefix=/usr/local/ --enable-shared > /dev/null && \ + make -j8 > /dev/null && make altinstall > /dev/null && ldconfig && cd .. && rm -rf Python-3.9.0* + ENV LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH} RUN ln -sf /usr/local/bin/python3.6 /usr/local/bin/python3 && ln -sf /usr/local/bin/python3.6 /usr/bin/python3 && ln -sf /usr/local/bin/pip3.6 /usr/local/bin/pip3 && ln -sf /usr/local/bin/pip3.6 /usr/bin/pip3 @@ -132,10 +138,13 @@ RUN wget https://paddle-ci.gz.bcebos.com/ccache-3.7.9.tar.gz && \ make -j8 && make install && \ ln -s /usr/local/ccache-3.7.9/bin/ccache /usr/local/bin/ccache -RUN python3.8 -m pip install --upgrade pip==21.1.1 requests && \ - python3.7 -m pip install --upgrade pip==21.1.1 requests && \ - python3.6 -m pip install --upgrade pip==21.1.1 requests +# Update pip version +RUN python3.8 -m pip install --upgrade pip==21.3.1 requests && \ + python3.7 -m pip install --upgrade pip==21.3.1 requests && \ + python3.6 -m pip install --upgrade pip==21.3.1 requests && \ + python3.9 -m pip install --upgrade pip==21.3.1 requests +# Wget ssl libs and link thems RUN wget https://paddle-serving.bj.bcebos.com/others/centos_ssl.tar && \ tar xf centos_ssl.tar && rm -rf centos_ssl.tar && \ mv libcrypto.so.1.0.2k /usr/lib/libcrypto.so.1.0.2k && mv libssl.so.1.0.2k /usr/lib/libssl.so.1.0.2k && \