wanghongkai 5 年之前
父节点
当前提交
890f54129d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -2,7 +2,7 @@ FROM node:10-alpine as builder
 WORKDIR /code
 RUN yarn config set registry https://registry.npm.taobao.org/
 ADD package.json /code
-RUN yarn install --production  
+RUN yarn install
 ADD . /code  
 RUN yarn build