This commit is contained in:
2025-02-04 23:29:50 +00:00
commit b7f97d22da
16 changed files with 1321 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM oven/bun:1.2.2-alpine AS build
WORKDIR /docs
# Copy package
COPY package.json ./
# Clean install dependencies based package-lock
RUN bun install
# Copy files
COPY . .
RUN npm run build
FROM httpd:latest
COPY --from=build /docs/.vitepress/dist /usr/local/apache2/htdocs/