From d707bace780dfa8f39ab7e15033da3e7e5883fac Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Sun, 9 Nov 2025 19:42:46 +0100 Subject: [PATCH] Change node version --- docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 16596609..f9a6c3c0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -30,9 +30,9 @@ RUN apt-get update -qq \ && mkdir -p $APP_PATH \ && rm -rf /var/lib/apt/lists/* -# Install Node.js LTS for production/staging -RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \ - && apt-get install -y nodejs \ +# Install Node.js from Debian repositories (supports all architectures including armv7) +RUN apt-get update -qq \ + && apt-get install -y nodejs npm \ && npm install -g yarn \ && rm -rf /var/lib/apt/lists/*