From 5e2d99a6c4a3dcd9e1bb7ae22f9cf2b88900785c Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Wed, 24 Jan 2024 17:08:33 +0100 Subject: [PATCH] Revert back to set up script as the other node installation method was not working --- docker/php-fpm/Dockerfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/docker/php-fpm/Dockerfile b/docker/php-fpm/Dockerfile index 729a641e..d4e675ba 100644 --- a/docker/php-fpm/Dockerfile +++ b/docker/php-fpm/Dockerfile @@ -4,9 +4,6 @@ WORKDIR "/var/www/html" RUN apt-get update \ && apt-get install -y --no-install-recommends \ - curl \ - ca-certificates \ - gnupg \ git \ zip \ unzip \ @@ -14,11 +11,7 @@ RUN apt-get update \ curl gd intl ldap mbstring mysqli odbc pdo pdo_mysql soap sockets xml zip xdebug exif sqlite3 gettext bcmath csv event imap inotify mcrypt redis \ && docker-php-ext-enable xdebug \ && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \ - && mkdir -p /etc/apt/keyrings \ - && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ - && NODE_MAJOR=18 \ - && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \ - && apt-get update \ + && curl -sLS https://deb.nodesource.com/setup_18.x | bash - \ && apt-get install -y nodejs \ && npm install -g npm \ && apt-get install -q -y ssmtp mailutils \