diff --git a/dev/build-arm/Dockerfile b/dev/build-arm/Dockerfile index 53147be8..51ac72f5 100644 --- a/dev/build-arm/Dockerfile +++ b/dev/build-arm/Dockerfile @@ -10,6 +10,7 @@ WORKDIR /wiki COPY ./package.json ./package.json RUN yarn --production --frozen-lockfile --non-interactive --network-timeout 100000 +RUN yarn patch-package # =============== # --- Release --- diff --git a/dev/build/Dockerfile b/dev/build/Dockerfile index 91930e0a..027bd23b 100644 --- a/dev/build/Dockerfile +++ b/dev/build/Dockerfile @@ -19,6 +19,7 @@ RUN yarn --frozen-lockfile --non-interactive RUN yarn build RUN rm -rf /wiki/node_modules RUN yarn --production --frozen-lockfile --non-interactive +RUN yarn patch-package # =============== # --- Release ---