diff --git a/docker/Dockerfile_wp b/docker/Dockerfile_wp index 357ff2f1e..a698095d7 100644 --- a/docker/Dockerfile_wp +++ b/docker/Dockerfile_wp @@ -56,6 +56,7 @@ RUN apt-get install -y \ curl \ git \ yarn \ + ca-certificates \ # These are for extensions zlib1g-dev \ libicu-dev \ @@ -63,6 +64,9 @@ RUN apt-get install -y \ # For installing things from URL wget +# https://github.com/nodesource/distributions/issues/1266 +RUN update-ca-certificates + RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \ php composer-setup.php --install-dir=/usr/bin --filename=composer --version=1.10.22 && \ php -r "unlink('composer-setup.php');"