maintanace/Dockerfile
2025-05-29 07:09:51 +00:00

7 lines
157 B
Docker

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