From 1f60f2d7b8e8ea25be6d005d02f13fc145a42664 Mon Sep 17 00:00:00 2001 From: Sergio Gutierrez Villalba Date: Tue, 21 Nov 2023 16:10:44 +0100 Subject: [PATCH] fix: update Node to v16 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 102632f3f..ac4b7fed9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ COPY . ./ # Install nvm ENV NVM_DIR /root/.nvm -ENV NODE_VERSION 14.18.0 +ENV NODE_VERSION 16.14.2 RUN curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash \ && . $NVM_DIR/nvm.sh \ && nvm install $NODE_VERSION \