This commit is contained in:
Sakurasan
2025-04-17 23:09:57 +08:00
parent 20c3cda4a7
commit fca67cae40
15 changed files with 579 additions and 82 deletions

View File

@@ -2,7 +2,7 @@ FROM node:20-alpine AS frontend
WORKDIR /frontend-build
COPY ./frontend .
RUN npm config set registry https://registry.npmmirror.com && npm install -g pnpm --registry=https://registry.npmmirror.com && pnpm i && pnpm build
RUN npm install -g pnpm && pnpm i && pnpm build
FROM golang:1.23-alpine AS backend
LABEL anther="github.com/Sakurasan"