From 6c2c2eee46f6e27c1309be9d27fd1c4fc426d0de Mon Sep 17 00:00:00 2001 From: Shlee Date: Sat, 30 Nov 2019 00:03:20 +0800 Subject: [PATCH] Updated NodeJS in Dockerfile (#12492) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eaa92f0c2..117727d08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:18.04 as build-dep # Use bash for the shell SHELL ["bash", "-c"] -# Install Node -ENV NODE_VER="12.11.1" +# Install Node v12 (LTS) +ENV NODE_VER="12.13.1" RUN echo "Etc/UTC" > /etc/localtime && \ apt update && \ apt -y install wget python && \