From 6afd69129d137e2bb6c6c30c5a850cc329f69f4d Mon Sep 17 00:00:00 2001 From: Anurag Priyam Date: Mon, 7 Sep 2020 13:16:03 +0100 Subject: [PATCH] Update NODE_VERSION for expose-fs expose-fs would fail on nodejs 5.1.0, printing `>> .fs.out 2>> .fs.err &` in the terminal window. Switching to a recent nodejs version solved the problem. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 964f9d9..4834b8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ WORKDIR /home/learner RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash # change it to your required node version -ENV NODE_VERSION 5.1.0 +ENV NODE_VERSION 12.18.3 # needed by nvm install ENV NVM_DIR /home/learner/.nvm