From 2927a3a2d7cf50d72d8c5ee92be6d8e6517f0494 Mon Sep 17 00:00:00 2001 From: David Montero Crespo Date: Tue, 14 Apr 2026 17:38:03 -0300 Subject: [PATCH] feat: add scripts directory to Dockerfile and mark subproject commits as dirty --- Dockerfile.standalone | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.standalone b/Dockerfile.standalone index 3dcc8129..5e3175f1 100644 --- a/Dockerfile.standalone +++ b/Dockerfile.standalone @@ -93,6 +93,7 @@ RUN npm install && npm run build --if-present # (it requires wokwi-elements/src which isn't needed at runtime) WORKDIR /app COPY frontend/ frontend/ +COPY scripts/ scripts/ WORKDIR /app/frontend RUN npm install && npm run build:docker