Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,12 @@ ENV PORT=3000
USER node

# Standalone-Bundle (server.js + minimale node_modules) und statische Assets
# übernehmen. Das Repo hat KEIN public/-Verzeichnis → wird nicht kopiert.
# übernehmen. public/ wird vom Next-Standalone-Output NICHT automatisch mitgenommen
# und muss explizit kopiert werden — sonst 404 auf alle public/-Assets (z. B. die
# Synoptik-GLBs und den Draco-Decoder).
COPY --from=builder --chown=node:node /app/.next/standalone ./
COPY --from=builder --chown=node:node /app/.next/static ./.next/static
COPY --from=builder --chown=node:node /app/public ./public

EXPOSE 3000

Expand Down
Loading