mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-30 10:53:02 +01:00
yarn clean cache before build
This commit is contained in:
parent
7f0d1bd414
commit
6d5ca5a3e1
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 --verbose && yarn ciexport"
|
RUN bash -c "yarn cache clean && 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 --verbose && yarn ciexport"
|
RUN bash -c "yarn cache clean && yarn install --verbose && yarn ciexport"
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Run the Application
|
# Run the Application
|
||||||
|
|
Loading…
Reference in a new issue