Remove actions

This commit is contained in:
2025-01-18 11:31:34 +01:00
parent 60f7fe858b
commit 05753f9144
3 changed files with 0 additions and 49 deletions

View File

@ -1,13 +0,0 @@
FROM node:16-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
COPY nginx.conf /etc/nginx/nginx.conf
WORKDIR /usr/share/nginx/html
COPY --from=build /app/content/.vitepress/dist .
ENTRYPOINT ["nginx", "-g", "daemon off;"]