diff options
author | Daniel Jakots <danieljakots@users.noreply.github.com> | 2022-09-23 18:11:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 00:11:34 +0200 |
commit | 0c99c6c3df7882e4a5f6df5ad17e2823211158c0 (patch) | |
tree | b940e0b709f57edc52472a2b5abab92677d09bc3 | |
parent | 0d6b878808a02aa4a544e894f06419c0f612c163 (diff) |
Update Node to 16.17.1 (#19224)
See https://nodejs.org/en/blog/vulnerability/september-2022-security-releases/ for the details.
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 7757bd0e4..42869d5de 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.16.0" +ENV NODE_VER="16.17.1" RUN ARCH= && \ dpkgArch="$(dpkg --print-architecture)" && \ case "${dpkgArch##*-}" in \ |