您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

3 年前
3 年前
12345678910
  1. FROM node:12 AS builder
  2. WORKDIR /app
  3. ADD package.json /app/
  4. RUN npm config set registry https://registry.npmmirror.com && npm install git+https://gitee.com/shihairong/raphael && npm install
  5. ADD . /app
  6. RUN npm run build:prod
  7. FROM busybox
  8. LABEL maintainer thomas.hairong@gmail.com
  9. COPY --from=builder /app/dist /html