Skip to content

Commit

Permalink
Merge pull request #511 from snyk/fix/upgrade-node-version-in-base-do…
Browse files Browse the repository at this point in the history
…ckerfiles

fix: upgrade node version for ubuntu base images [ED-214]
  • Loading branch information
pavel-snyk authored Mar 14, 2023
2 parents ade9b3c + 62ddff8 commit 5eb66dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN groupadd --gid 1000 node \
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node \
&& apt update && apt upgrade -y && apt install gpg curl xz-utils -y

ENV NODE_VERSION 16.18.1
ENV NODE_VERSION 16.19.1

RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ubuntu/Dockerfile.nlatest
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN groupadd --gid 1000 node \
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node \
&& apt update && apt upgrade -y && apt install gpg curl xz-utils -y

ENV NODE_VERSION 19.6.0
ENV NODE_VERSION 19.7.0

RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
Expand Down

0 comments on commit 5eb66dd

Please sign in to comment.