From 661c44e1873315c3b877ef8ff795ed2630012d95 Mon Sep 17 00:00:00 2001 From: Maciej Kempin Date: Sat, 11 Nov 2023 13:41:12 +0000 Subject: [PATCH] node 18 --- .travis.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fb88858b91..1d03fb2277 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: node_js node_js: - - "16" + - "18" env: global: diff --git a/Dockerfile b/Dockerfile index c5b23b7cb7..167cebac77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 16.20.2 +ENV NODE_VERSION 18.17.0 RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \ && tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \