From 4d587e95f2a74a1264192d7e3e711aec2b1dcdfe Mon Sep 17 00:00:00 2001 From: Bai Date: Mon, 25 May 2026 17:12:50 +0800 Subject: [PATCH] feat: modify dockerfile-ee --- Dockerfile-ee | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 \