From bec2d217ad894ed3d2fc323ce0a971f399b5d40b Mon Sep 17 00:00:00 2001 From: ashish-egov Date: Tue, 17 Dec 2024 14:50:46 +0530 Subject: [PATCH] build fix --- health-services/project-factory/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/health-services/project-factory/Dockerfile b/health-services/project-factory/Dockerfile index ccbb80d300..ebdd6daf1e 100644 --- a/health-services/project-factory/Dockerfile +++ b/health-services/project-factory/Dockerfile @@ -19,7 +19,7 @@ ENV NODE_OPTIONS="--max-old-space-size=2048" COPY package.json ./ # Install dependencies -RUN yarn cache clean && yarn install +RUN yarn cache clean --force && yarn install --no-cache # Optionally, you can add a label with the commit ID LABEL commit_id=$COMMIT_ID