diff options
author | Daniel Jakots <danieljakots@users.noreply.github.com> | 2022-08-14 20:47:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 02:47:33 +0200 |
commit | 9f61f22a3b93115763aa7b21c19c437698c34cf8 (patch) | |
tree | 83dab1782f42d1fd7e2876cec89b3752770c20f4 /Dockerfile | |
parent | c384430ba03d3417d05d4cd2991d89a505ab51df (diff) |
Update node to 16.16.0 (#18790)
See https://nodejs.org/en/blog/vulnerability/july-2022-security-releases/
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 6180e0796..c79618da9 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.15.1" +ENV NODE_VER="16.16.0" RUN ARCH= && \ dpkgArch="$(dpkg --print-architecture)" && \ case "${dpkgArch##*-}" in \ |