Update OpenSSL and GMSSL installation path
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
@@ -111,8 +111,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update \
|
|
111 |
&& cd /tmp \
|
112 |
&& wget https://www.gmssl.cn/gmssl/down/gmssl_openssl_1.1_b2024_x64_1.tar.gz \
|
113 |
&& mkdir -p /usr/local/openresty/openssl \
|
114 |
-
&&
|
115 |
-
&& tar xzfm gmssl_openssl_1.1_b2024_x64_1.tar.gz -C /usr/local/gmssl \
|
116 |
&& cp /usr/local/gmssl/* /usr/local/openresty/openssl \
|
117 |
&& cd /tmp \
|
118 |
&& curl -fSL https://downloads.sourceforge.net/project/pcre/pcre/${RESTY_PCRE_VERSION}/pcre-${RESTY_PCRE_VERSION}.tar.gz -o pcre-${RESTY_PCRE_VERSION}.tar.gz \
|
@@ -179,5 +178,4 @@ CMD ["/usr/local/openresty/bin/openresty", "-g", "daemon off;"]
|
|
179 |
|
180 |
# Use SIGQUIT instead of default SIGTERM to cleanly drain requests
|
181 |
# See https://github.com/openresty/docker-openresty/blob/master/README.md#tips--pitfalls
|
182 |
-
STOPSIGNAL SIGQUIT
|
183 |
-
#
|
|
|
111 |
&& cd /tmp \
|
112 |
&& wget https://www.gmssl.cn/gmssl/down/gmssl_openssl_1.1_b2024_x64_1.tar.gz \
|
113 |
&& mkdir -p /usr/local/openresty/openssl \
|
114 |
+
&& tar xzfm gmssl_openssl_1.1_b2024_x64_1.tar.gz -C /usr/local/ \
|
|
|
115 |
&& cp /usr/local/gmssl/* /usr/local/openresty/openssl \
|
116 |
&& cd /tmp \
|
117 |
&& curl -fSL https://downloads.sourceforge.net/project/pcre/pcre/${RESTY_PCRE_VERSION}/pcre-${RESTY_PCRE_VERSION}.tar.gz -o pcre-${RESTY_PCRE_VERSION}.tar.gz \
|
|
|
178 |
|
179 |
# Use SIGQUIT instead of default SIGTERM to cleanly drain requests
|
180 |
# See https://github.com/openresty/docker-openresty/blob/master/README.md#tips--pitfalls
|
181 |
+
STOPSIGNAL SIGQUIT
|
|