SchiriTrainer2/frontend/Dockerfile
2025-07-25 14:49:18 +02:00

14 lines
290 B
Docker

FROM node:20 AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build || (echo "BUILD FEHLGESCHLAGEN" && cat /app/npm-debug.log || true)
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf