This commit is contained in:
1iaan
2026-04-10 12:00:03 +08:00
parent 94bdba930e
commit 5ce2a5f1a3
150 changed files with 215 additions and 20694 deletions

View File

@@ -1,8 +1,11 @@
FROM quay.io/0voice/node:lts-alpine AS frontend
RUN npm install pnpm -g
COPY . /app
WORKDIR /app
RUN pnpm bootstrap
COPY package.json pnpm-lock.yaml .npmrc ./
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm run build-only
FROM quay.io/0voice/nginx:1.25.4 AS web