Kaynağa Gözat

mount node_modules/.cache to use HardSourceWebpackPlugin

Yuki Takei 6 yıl önce
ebeveyn
işleme
f7509db9e6
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2 1
      docker/Dockerfile

+ 2 - 1
docker/Dockerfile

@@ -79,7 +79,8 @@ ENV appDir /opt/growi
 WORKDIR ${appDir}
 
 # build
-RUN yarn build:prod
+RUN --mount=type=cache,target=./node_modules/.cache \
+  yarn build:prod
 
 # remove except artifacts
 WORKDIR /tmp