From 70857e117b61b3fa0f0d64741239ad5e3e196f1b Mon Sep 17 00:00:00 2001 From: Six <23470032+6ixfalls@users.noreply.github.com> Date: Tue, 16 Jan 2024 19:08:06 -0800 Subject: [PATCH] fix: Add bundle-analyzer to client Dockerfile --- apps/client/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/Dockerfile b/apps/client/Dockerfile index 7f3c3c38..edd65fca 100644 --- a/apps/client/Dockerfile +++ b/apps/client/Dockerfile @@ -7,7 +7,8 @@ FROM node:16.18.1 as builder WORKDIR /app COPY ./dist/apps/client ./yarn.lock ./prisma ./ -RUN yarn install --production=false +# Install dependencies +RUN yarn install --production=false && yarn add @next/bundle-analyzer # ------------------------------------------ # PROD STAGE