8 lines
175 B
Docker
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
|