From 8461322c27b8962fa2d4b3e349673b04f456ae2e Mon Sep 17 00:00:00 2001 From: Daniele Ricci Date: Thu, 14 Dec 2023 08:16:09 +0100 Subject: [PATCH] chore: add mode skip build in docker image yarn build phase --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9a1f7f201f2..2a5da8e4f76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ COPY .yarn .yarn COPY .eslintrc.js .prettierrc .yarnrc.yml complete.eslintrc.js eslint.tsconfig.json package.json tsconfig.json yarn.lock yarn-project.nix ./ FROM nodejs-builder as cardano-services-builder -RUN yarn --immutable --inline-builds +RUN yarn --immutable --inline-builds --mode=skip-build COPY packages packages RUN \ echo "export const unused = 'unused';" > packages/e2e/src/index.ts &&\