From a72a1e7dd6c3b2b1632964d268e050f589c8fe8b Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Wed, 17 Jul 2024 12:24:00 -0500 Subject: [PATCH] Use nodejs stable(?) version --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 597c0da..8c78c3f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM docker.io/library/debian:latest as builder # First - build RUN apt update && apt install -y curl libssl-dev perl git gcc make -RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash +RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash RUN apt update && apt install -y nodejs RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --default-toolchain stable --profile minimal