From b3c2f9c630a11b19175ac5e01ff796f1ab02ed53 Mon Sep 17 00:00:00 2001 From: Rongxin Liu Date: Mon, 7 Oct 2024 08:43:51 -0400 Subject: [PATCH] downgrade nodejs runtime to 22.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6cc5f54..b6589b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ RUN cd /tmp && \ # https://github.com/tj/n#installation RUN curl --location https://raw.githubusercontent.com/tj/n/master/bin/n --output /usr/local/bin/n && \ chmod a+x /usr/local/bin/n && \ - n 22.9.0 + n 22.6.0 # Install Node.js packages