25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
256 B

  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
  5. ADD . /app
  6. RUN npm run build
  7. FROM busybox
  8. LABEL maintainer thomas.hairong@gmail.com
  9. COPY --from=builder /app/dist /html