From 7b4f70a9847ec5c800bb3454e434479d4b3862ee Mon Sep 17 00:00:00 2001 From: Ramez Weissa Date: Tue, 2 Jul 2024 12:05:53 +0300 Subject: [PATCH] fix: update node_version in dockerfile --- .controlplane/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.controlplane/Dockerfile b/.controlplane/Dockerfile index 67d5b59a..e54d715e 100644 --- a/.controlplane/Dockerfile +++ b/.controlplane/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update -qq && \ # Install JavaScript dependencies # Make sure NODE_VERSION matches the node version in .nvmrc and package.json -ARG NODE_VERSION=18.20.3 +ARG NODE_VERSION=22.3.0 ARG YARN_VERSION=1.22.19 ENV PATH=/usr/local/node/bin:$PATH RUN curl -sL https://github.com/nodenv/node-build/archive/master.tar.gz | tar xz -C /tmp/ && \