From 24a4a0829f5195baa7328f3d01877010dfca2a35 Mon Sep 17 00:00:00 2001 From: Tomas Balsys Date: Tue, 30 Sep 2025 04:51:51 +0300 Subject: [PATCH] Install nodejs v22 --- Containerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index dadd959..709634c 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,7 @@ FROM debian:trixie -RUN apt-get update && \ - LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y nodejs mkosi +RUN export LC_ALL=C DEBIAN_FRONTEND=noninteractive && \ + apt-get update && \ + apt-get install -y curl mkosi && \ + curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \ + apt-get install -y nodejs