From 458619def81368fa3a30ea92ae46ef21d5b46a21 Mon Sep 17 00:00:00 2001 From: Mark Shust Date: Fri, 31 Jan 2020 12:59:56 -0500 Subject: [PATCH] Fixed NPM executable file not found in $PATH #210 --- images/php/7.2/Dockerfile | 2 +- images/php/7.3/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/php/7.2/Dockerfile b/images/php/7.2/Dockerfile index 8e9630886..1d2e60761 100644 --- a/images/php/7.2/Dockerfile +++ b/images/php/7.2/Dockerfile @@ -63,7 +63,7 @@ RUN groupadd -g 1000 app \ && useradd -g 1000 -u 1000 -d /var/www -s /bin/bash app RUN apt-get install -y gnupg \ - && curl -sL https://deb.nodesource.com/setup_8.x | bash - \ + && curl -sL https://deb.nodesource.com/setup_10.x | bash - \ && apt-get install -y nodejs \ && mkdir /var/www/.config /var/www/.npm \ && chown app:app /var/www/.config /var/www/.npm \ diff --git a/images/php/7.3/Dockerfile b/images/php/7.3/Dockerfile index 3068e3920..58d44e4e4 100644 --- a/images/php/7.3/Dockerfile +++ b/images/php/7.3/Dockerfile @@ -65,7 +65,7 @@ RUN groupadd -g 1000 app \ && useradd -g 1000 -u 1000 -d /var/www -s /bin/bash app RUN apt-get install -y gnupg \ - && curl -sL https://deb.nodesource.com/setup_8.x | bash - \ + && curl -sL https://deb.nodesource.com/setup_10.x | bash - \ && apt-get install -y nodejs \ && mkdir /var/www/.config /var/www/.npm \ && chown app:app /var/www/.config /var/www/.npm \