:art:合并编译打包
Some checks failed
continuous-integration/drone/tag Build is failing

This commit is contained in:
coward
2024-06-04 09:55:48 +08:00
parent e1f168b274
commit 6d4f4b2e02
275 changed files with 17590 additions and 951 deletions

View File

@@ -1,9 +1,25 @@
FROM node:18-alpine as build-stage
WORKDIR ./web-src
RUN corepack enable
RUN corepack prepare pnpm@8.6.10 --activate
RUN npm config set registry https://registry.npmmirror.com
COPY .npmrc package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm build
FROM golang:alpine as build
RUN apk add upx
WORKDIR /build
COPY ./web-src/dist ./web
COPY . .
# sqlite必须
ENV GO111MODULE=on