SchiriTrainer2/frontend/Dockerfile
2025-07-25 01:24:32 +02:00

13 lines
222 B
Docker

FROM node:20 AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf