Merge pull request 'fix: 🐛 修正构建脚本' (#12) from cicd into master
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #12
This commit is contained in:
施海荣 2023-03-14 14:39:39 +08:00
commit a7b39f3ce1
2 changed files with 11 additions and 8 deletions

View File

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

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 #RUN npm config set registry https://registry.npmmirror.com && npm install
ADD . /app #ADD . /app
RUN npm run build #RUN npm run build
#
#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