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

View File

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