From c1f3a4bc729b62f05c4c5735054e60f18fb4385c Mon Sep 17 00:00:00 2001 From: SturdyStubs Date: Mon, 30 Sep 2024 04:58:40 +0200 Subject: [PATCH] add support for Node22 --- games/rust/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/games/rust/Dockerfile b/games/rust/Dockerfile index 03295e5dc..1365a5ce9 100644 --- a/games/rust/Dockerfile +++ b/games/rust/Dockerfile @@ -33,7 +33,8 @@ RUN dpkg --add-architecture i386 \ && apt update \ && apt upgrade -y \ && apt install -y lib32gcc-s1 lib32stdc++6 unzip curl iproute2 tzdata libgdiplus libsdl2-2.0-0:i386 \ - && curl -sL https://deb.nodesource.com/setup_14.x | bash - \ + && curl -fsSL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh \ + && bash nodesource_setup.sh \ && apt install -y nodejs \ && mkdir /node_modules \ && npm install --prefix / ws \