From 365fa448c16893dde7a2bc2367a9be882a1fc2bc Mon Sep 17 00:00:00 2001 From: Serhii Shymkiv Date: Mon, 30 Dec 2024 11:09:00 +0200 Subject: [PATCH] Update NodeJS version. --- configuration/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/Dockerfile b/configuration/Dockerfile index f28010e..87e5846 100644 --- a/configuration/Dockerfile +++ b/configuration/Dockerfile @@ -2,8 +2,8 @@ FROM postgres:14-bookworm RUN apt update && apt install -y --no-install-recommends python3 python3-pip jq wget curl psmisc libpq-dev libjemalloc-dev libffi-dev nginx netcat-traditional && apt clean && rm -rf /var/lib/apt/lists/* -ENV NODE_VERSION=20.11.1 -RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash +ENV NODE_VERSION=22.9.0 +RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash ENV NVM_DIR=/root/.nvm RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION} RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}