diff --git a/Dockerfile-ee b/Dockerfile-ee index 7836977e9..8fd121db0 100644 --- a/Dockerfile-ee +++ b/Dockerfile-ee @@ -28,8 +28,7 @@ RUN set -ex \ && rm -rf /root/.cache/ RUN set -ex \ - && curl -fsSL -o /tmp/gmssl-install.sh \ - "https://github.com/guanzhi/GmSSL/releases/download/v${GMSSL_VERSION}/GmSSL-${GMSSL_VERSION}-Linux.sh" \ + && python3 -c "import urllib.request; urllib.request.urlretrieve('https://github.com/guanzhi/GmSSL/releases/download/v${GMSSL_VERSION}/GmSSL-${GMSSL_VERSION}-Linux.sh', '/tmp/gmssl-install.sh')" \ && chmod +x /tmp/gmssl-install.sh \ && /tmp/gmssl-install.sh --prefix=/usr/local \ && echo "/usr/local/GmSSL-${GMSSL_VERSION}-Linux/lib" > /etc/ld.so.conf.d/gmssl.conf \