From 7f0d1bd41421e9ebf5a4f78b450c6044eac41cc1 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Fri, 19 Jul 2024 15:48:43 +0530 Subject: [PATCH] Add verbose logs when outputing yarn install steps --- Dockerfile | 2 +- prod.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a7ddb1d1..217f5f73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ ENV PYTHONPATH=/app/src:$PYTHONPATH # Go to the directory src/interface/web and export the built Next.js assets WORKDIR /app/src/interface/web -RUN bash -c "yarn install && yarn ciexport" +RUN bash -c "yarn install --verbose && yarn ciexport" WORKDIR /app # Run the Application diff --git a/prod.Dockerfile b/prod.Dockerfile index 47a8a232..418e070a 100644 --- a/prod.Dockerfile +++ b/prod.Dockerfile @@ -29,7 +29,7 @@ ENV PYTHONPATH=/app/src:$PYTHONPATH # Go to the directory src/interface/web and export the built Next.js assets WORKDIR /app/src/interface/web -RUN bash -c "yarn install && yarn ciexport" +RUN bash -c "yarn install --verbose && yarn ciexport" WORKDIR /app # Run the Application