From 67d7284a33b55f4df3339d6b549221c85fd41afc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Beaul=C3=A9?= Date: Sat, 17 Jun 2023 09:07:17 -0300 Subject: [PATCH] Install npm in Docker explicitly The Docker builds have started failing because npm is no longer packaged with node when installing them. This commit adds npm to the list of packages to install. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c247fdc703f..61c9fd71b85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ ENV IN_DOCKER 1 RUN apt-get update RUN apt-get install -y curl nginx RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - -RUN apt-get install -y nodejs +RUN apt-get install -y nodejs npm # Copy all our files into the baseimage and cd to that directory RUN mkdir /tcd