wanghongkai 5 лет назад
Родитель
Сommit
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