SchiriTrainer2/frontend/Dockerfile
2025-07-25 15:28:57 +02:00

15 lines
298 B
Docker

FROM node:20 AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build && test -d dist || (echo "dist/ NICHT gefunden" && ls -la /app && exit 1)
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf