From f0fdbeeb956d0b40b8af26c46cb4e11cdf26e5b8 Mon Sep 17 00:00:00 2001 From: Jose Selesan Date: Fri, 29 May 2026 15:01:52 -0300 Subject: [PATCH] fix: crear directorio apps/backend en frontend-build stage para que Vite pueda escribir el build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 519c8fb..59dfa0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /app COPY apps/frontend/ apps/frontend/ COPY packages/common/ packages/common/ -RUN bun run --cwd apps/frontend build +RUN mkdir -p apps/backend && bun run --cwd apps/frontend build FROM deps AS backend-build WORKDIR /app