From 0282cfbdd5c81af53da05b4189b4606b6163410c Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 27 Jun 2023 23:20:06 +0200 Subject: [PATCH] Dockerfile: Remove broken npm installation line --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d149c384d..2c5b6dbae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,8 +33,7 @@ RUN apt-get update && \ mkdir /static && \ mkdir /etc/supervisord && \ curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - && \ - apt-get install -y nodejs && \ - curl -qL https://www.npmjs.com/install.sh | sh + apt-get install -y nodejs ENV LC_ALL=C.UTF-8 \