Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

17 righe
390 B

  1. # FROM node:12 AS builder
  2. # WORKDIR /app
  3. # ADD package.json /app/
  4. # RUN npm install \
  5. # --registry=https://registry.npm.taobao.org \
  6. # --disturl=https://npm.taobao.org/dist
  7. # ADD . /app
  8. # RUN npm run build:prod
  9. # FROM busybox
  10. # LABEL maintainer thomas.hairong@gmail.com
  11. # COPY --from=builder /app/dist /html
  12. FROM busybox
  13. LABEL maintainer thomas.hairong@gmail.com
  14. COPY dist/ /html