Uploaded Project

This commit is contained in:
Phil 2025-05-29 07:09:22 +00:00
parent aca608ae09
commit 7bcfca842d
3 changed files with 37 additions and 0 deletions

6
Dockerfile Normal file
View file

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