瀏覽代碼

fix: dockerfile build issue

Nick 6 年之前
父節點
當前提交
86f369c661
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      dev/build/Dockerfile

+ 3 - 2
dev/build/Dockerfile

@@ -16,10 +16,11 @@ COPY ./.babelrc ./.babelrc
 COPY ./.eslintignore ./.eslintignore
 COPY ./.eslintignore ./.eslintignore
 COPY ./.eslintrc.yml ./.eslintrc.yml
 COPY ./.eslintrc.yml ./.eslintrc.yml
 
 
-RUN yarn --cache-folder /codefresh/volume/yarn
+RUN yarn cache clean
+RUN yarn --frozen-lockfile --non-interactive
 RUN yarn build
 RUN yarn build
 RUN rm -rf /wiki/node_modules
 RUN rm -rf /wiki/node_modules
-RUN yarn --production
+RUN yarn --production --frozen-lockfile --non-interactive
 
 
 # ===============
 # ===============
 # --- Release ---
 # --- Release ---