about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorDaniel Jakots <danieljakots@users.noreply.github.com>2022-01-30 18:32:03 -0500
committerGitHub <noreply@github.com>2022-01-31 00:32:03 +0100
commitaa45404578f3f4bc61742b0bda7111b520491100 (patch)
treebcc225a033b394ca0c81bc507f0874a7d016f3c0 /Dockerfile
parenta0e06c3c3e75da17326404dbdc4c38a6aab6b0bf (diff)
Bump NODE_VER to 16.13.2, to solve security issues (#17399)
Fixes CVE-2021-44532, CVE-2021-44533, and CVE-2022-21824.
See: https://nodejs.org/en/blog/vulnerability/jan-2022-security-releases/
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 590b6eddf..c6287b5a7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,7 +5,7 @@ SHELL ["/bin/bash", "-c"]
 RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
 
 # Install Node v16 (LTS)
-ENV NODE_VER="16.13.0"
+ENV NODE_VER="16.13.2"
 RUN ARCH= && \
     dpkgArch="$(dpkg --print-architecture)" && \
   case "${dpkgArch##*-}" in \