Fix frontend Docker build and session ID typing

This commit is contained in:
2026-02-20 22:02:48 -05:00
parent 7df3d54103
commit 6e299b1e1f
3 changed files with 17 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ RUN npm install
FROM base AS builder
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN npm run build
RUN mkdir -p public && npm run build
# Production
FROM base AS runner