From 16271c4bd1eeff6a73f7dcf175c9fddfcfad01fa Mon Sep 17 00:00:00 2001 From: David Montero Crespo Date: Fri, 6 Mar 2026 12:09:55 -0300 Subject: [PATCH] fix: update frontend builder image to use full node:20 version --- Dockerfile.standalone | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.standalone b/Dockerfile.standalone index b251fe4..cdd4765 100644 --- a/Dockerfile.standalone +++ b/Dockerfile.standalone @@ -1,5 +1,5 @@ # ---- Stage 1: Build frontend and wokwi-libs ---- -FROM node:20-slim AS frontend-builder +FROM node:20 AS frontend-builder WORKDIR /app