This commit is contained in:
Tizian.Breuch
2025-10-09 16:40:13 +02:00
parent e1164892f1
commit cf89f4170c

View File

@@ -1,4 +1,6 @@
# Dockerfile
# Dockerfile
# --- Stufe 1: Bau-Umgebung ("builder") --- # --- Stufe 1: Bau-Umgebung ("builder") ---
FROM node:20-alpine AS builder FROM node:20-alpine AS builder
WORKDIR /app WORKDIR /app
@@ -13,4 +15,4 @@ WORKDIR /app
ENV NODE_ENV=production ENV NODE_ENV=production
COPY --from=builder /app/.output . COPY --from=builder /app/.output .
EXPOSE 3001 EXPOSE 3001
CMD [ "node", "server/index.mjs" ] CMD [ "node", "browser/index.mjs" ]