From 48eb8defa962ac812dcbbff639896e77801ac04b Mon Sep 17 00:00:00 2001 From: kevkevin Date: Wed, 26 Apr 2023 16:02:35 -0500 Subject: [PATCH] ci: not installing dev dependecies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 025fd7b60..4f7bf79a2 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 +RUN yarn cache clean && yarn install --production=true COPY . .