mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Add verbose logs when outputing yarn install steps
This commit is contained in:
parent
7426a4f819
commit
7f0d1bd414
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ ENV PYTHONPATH=/app/src:$PYTHONPATH
|
||||||
|
|
||||||
# Go to the directory src/interface/web and export the built Next.js assets
|
# Go to the directory src/interface/web and export the built Next.js assets
|
||||||
WORKDIR /app/src/interface/web
|
WORKDIR /app/src/interface/web
|
||||||
RUN bash -c "yarn install && yarn ciexport"
|
RUN bash -c "yarn install --verbose && yarn ciexport"
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Run the Application
|
# Run the Application
|
||||||
|
|
|
@ -29,7 +29,7 @@ ENV PYTHONPATH=/app/src:$PYTHONPATH
|
||||||
|
|
||||||
# Go to the directory src/interface/web and export the built Next.js assets
|
# Go to the directory src/interface/web and export the built Next.js assets
|
||||||
WORKDIR /app/src/interface/web
|
WORKDIR /app/src/interface/web
|
||||||
RUN bash -c "yarn install && yarn ciexport"
|
RUN bash -c "yarn install --verbose && yarn ciexport"
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Run the Application
|
# Run the Application
|
||||||
|
|
Loading…
Reference in a new issue