start.hackmi.ch/Dockerfile

13 lines
249 B
Text
Raw Normal View History

2024-10-21 18:53:24 +02:00
FROM node:20 AS builder
2024-10-21 18:44:28 +02:00
2024-10-21 18:56:23 +02:00
WORKDIR /app
2024-10-21 19:01:01 +02:00
COPY . .
2024-10-21 18:56:23 +02:00
2024-10-21 18:45:35 +02:00
RUN npm install
2024-10-21 18:44:28 +02:00
RUN npm run build
2024-10-21 18:53:24 +02:00
FROM nginx:stable-alpine-slim AS production
2024-10-21 18:44:28 +02:00
RUN rm -rf /usr/share/nginx/html
RUN mkdir -p /usr/share/nginx/html
2024-10-21 19:01:01 +02:00
COPY --from=builder /app/dist/ /usr/share/nginx/html/