From 4b57eea8df202ec10aae941549aa8490fbd996f7 Mon Sep 17 00:00:00 2001 From: Giuseppe Scuglia Date: Wed, 11 Dec 2024 18:50:30 +0100 Subject: [PATCH] fix: use node LTS version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 68af5718..972ef046 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN poetry config virtualenvs.create false && \ COPY . /app # Build the webapp -FROM node:23.4-slim AS webbuilder +FROM node:22-slim AS webbuilder # Install curl for downloading the webapp from GH and unzip to extract it RUN apt-get update && apt-get install -y --no-install-recommends \