Compare commits

..

No commits in common. "a7b39f3ce144cb77dfb5972f27b596cb826ce9f4" and "523a9d976761d3ca11bbfce77d28fe0555bae8ee" have entirely different histories.

2 changed files with 8 additions and 11 deletions

View File

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

View File

@ -1,14 +1,10 @@
#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 dist/ /html COPY --from=builder /app/dist /html