1
0

build: :新增自动构建发布脚本

Este cometimento está contido em:
2022-09-21 17:10:00 +08:00
ascendente a0fef0454d
cometimento a95a7a20d3
3 ficheiros modificados com 69 adições e 0 eliminações

10
Dockerfile Ficheiro normal
Ver ficheiro

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