From fcb1f0fbc415745ee2ca8bc5e98ac30e1bf8a587 Mon Sep 17 00:00:00 2001 From: junderw Date: Thu, 27 Jul 2023 03:03:39 -0700 Subject: [PATCH] Use Node v18 in Dockerfile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c37ad2c..d99daeb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,10 +27,8 @@ RUN apt update && \ libxtst6 \ xvfb && \ # Install node v14 - curl -fsSL https://deb.nodesource.com/setup_14.x | bash - && \ + curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ apt install nodejs -y && \ - # Install npm v8 so preserve package-lock.json format - npm i -g npm@8 && \ # Clear apt cache rm -rf /var/lib/{apt,dpkg,cache,log}/