Add verbose logs when outputing yarn install steps

This commit is contained in:
sabaimran 2024-07-19 15:48:43 +05:30
parent 7426a4f819
commit 7f0d1bd414
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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