maintanace/Dockerfile
2025-05-29 09:13:46 +02:00

8 lines
175 B
Docker

FROM node:24-alpine as build
WORKDIR /app
COPY . .
RUN npm i
RUN npm run docs:build
FROM nginx:1-alpine as prod
COPY --from=build /app/.vitepress/dist/ /usr/share/nginx/html