From 1b35c6927c5e5fdff8579bcc1e5f2e97427fdfc5 Mon Sep 17 00:00:00 2001 From: dimti Date: Thu, 13 Jul 2023 20:33:26 +0300 Subject: [PATCH] + nuc certs into php74 --- dockerfiles/php-fpm/php74.Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dockerfiles/php-fpm/php74.Dockerfile b/dockerfiles/php-fpm/php74.Dockerfile index e290b2c..777b8d4 100644 --- a/dockerfiles/php-fpm/php74.Dockerfile +++ b/dockerfiles/php-fpm/php74.Dockerfile @@ -33,6 +33,16 @@ RUN if [ ${INSTALL_PEAR_MAIL} = true ]; then \ COPY ./xdebug2/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini ########################################################################### +# НУЦ: +########################################################################### + +RUN mkdir /usr/local/share/ca-certificates/extra && \ + cd /usr/local/share/ca-certificates/extra && \ + curl -O https://gu-st.ru/content/lending/russian_trusted_root_ca_pem.crt && \ + curl -O https://gu-st.ru/content/lending/russian_trusted_sub_ca_pem.crt && \ + update-ca-certificates + +########################################################################### # Tune opts: ###########################################################################