From 67b25fe736b724dc94bf6192603706a76dbad6b5 Mon Sep 17 00:00:00 2001 From: kevkevin Date: Wed, 26 Apr 2023 16:08:48 -0500 Subject: [PATCH] ci: ignore scripts for docker file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4f7bf79a2..5085bc547 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /usr/src/app COPY package*.json . COPY yarn.lock . -RUN yarn cache clean && yarn install --production=true +RUN yarn cache clean && yarn install --production=true --ignore-scripts COPY . .