build: 🏗️ 调整构建方式,从本地构建后上传dist目录 #86

Merged
shr merged 1 commits from ci into develop 2022-06-07 10:37:07 +08:00
3 changed files with 11 additions and 9 deletions

View File

@ -1,7 +1,6 @@
.vscode/ .vscode/
.idea/ .idea/
node_modules/ node_modules/
dist/
**/*.log **/*.log
LICENSE LICENSE
README.md README.md

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
.DS_Store .DS_Store
node_modules/ node_modules/
dist/
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*

View File

@ -1,10 +1,14 @@
FROM node:12 AS builder #FROM node:12 AS builder
WORKDIR /app #WORKDIR /app
ADD package.json /app/ #ADD package.json /app/
RUN npm config set registry https://registry.npmmirror.com && npm install git+https://gitee.com/shihairong/raphael && npm install #RUN npm config set registry https://registry.npmmirror.com && npm install git+https://gitee.com/shihairong/raphael && npm install
ADD . /app #ADD . /app
RUN npm run build:prod #RUN npm run build:prod
#
#FROM busybox
#LABEL maintainer thomas.hairong@gmail.com
#COPY --from=builder /app/dist /html
FROM busybox FROM busybox
LABEL maintainer thomas.hairong@gmail.com LABEL maintainer thomas.hairong@gmail.com
COPY --from=builder /app/dist /html COPY dist/ /html