From 846defb42e170ef5b54731377a0c17a7de9d5634 Mon Sep 17 00:00:00 2001 From: ralf Date: Fri, 3 Feb 2023 20:29:01 +0100 Subject: [PATCH] fix missing curl caused nodejs install to fail --- doc/docker/development/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docker/development/Dockerfile b/doc/docker/development/Dockerfile index 5ab433d2a5..b8e7fe5efe 100644 --- a/doc/docker/development/Dockerfile +++ b/doc/docker/development/Dockerfile @@ -14,7 +14,7 @@ ENV VERSION=$VERSION ENV PHP_VERSION=$PHP_VERSION RUN apt-get update \ - && apt-get install -y software-properties-common \ + && apt-get install -y software-properties-common curl \ && LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php \ && apt-get update \ && bash -c "apt-get install -y php$PHP_VERSION-{cli,mysql,gd,xsl,bz2,opcache,apcu,tidy,zip,bcmath,mbstring,smbclient,ldap,curl,fpm,pgsql,gmp}" \