7 lines
157 B
Docker
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
|