diff options
author | Shlee <github@shl.ee> | 2019-11-30 00:03:20 +0800 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-11-29 17:03:20 +0100 |
commit | 6c2c2eee46f6e27c1309be9d27fd1c4fc426d0de (patch) | |
tree | 881472f7c296bd9dc9f3cb8846b8468087f5f71a | |
parent | fd45f5bbaabcc83ae66e507414c657beba9b3ce5 (diff) |
Updated NodeJS in Dockerfile (#12492)
-rw-r--r-- | Dockerfile | 4 |
1 files 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 && \ |