feat: Добавлен CI/CD
All checks were successful
CI/CD Pipeline / docker (push) Successful in 1m10s

This commit is contained in:
2026-02-01 08:01:34 +03:00
parent 747decccc7
commit 94ce88b952
4 changed files with 113 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:24-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM caddy:2-alpine
COPY Caddyfile /etc/caddy/Caddyfile
COPY --from=build /app/.vitepress/dist /srv