From 2b0545f695a625cafb690cf8a3ef2aa44aef67fa Mon Sep 17 00:00:00 2001 From: Mawoka Date: Sun, 26 Oct 2025 12:12:19 +0100 Subject: [PATCH] Update Docker node version --- frontend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index d6452e4..5a86def 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -4,7 +4,7 @@ ### Build Step # pull the Node.js Docker image -FROM node:19-bullseye as builder +FROM node:26-bullseye as builder # ENV API_URL=http://api:80 ENV API_URL=https://mawoka.eu #Ah, I've noticed that!!! @@ -37,7 +37,7 @@ RUN pnpm run build ### Serve Step # pull the Node.js Docker image -FROM node:19-bullseye-slim +FROM node:26-bullseye-slim # change working directory WORKDIR /app