From 3665e86a3d01e9a6c1f063e830fd0968c8fe0a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20D=C3=BCren?= Date: Mon, 29 Dec 2025 17:32:09 -0600 Subject: [PATCH] Link static files for vite-express --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3fa97a1..cb38303 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,6 +48,9 @@ RUN cd /app/code && npx prisma generate --schema=/app/code/prisma/schema.prisma RUN cp /app/code/node_modules/.prisma/client/*.node /app/code/dist/ 2>/dev/null || true RUN cp /app/code/node_modules/.prisma/client/*.node /app/code/node_modules/@prisma/client/ 2>/dev/null || true +# Link static files to where vite-express expects them +RUN ln -sfn /app/code/dist/public /app/code/server/public + # Set up initial data directory template RUN mkdir -p /tmp/data/.blinko