snotes-website/Dockerfile

16 lines
175 B
Docker
Raw Permalink Normal View History

2024-05-03 17:35:24 +02:00
FROM node:20 AS build-stage
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
FROM nginx:latest
COPY --from=build-stage /app/src /usr/share/nginx/html/
EXPOSE 80