mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
build(Dockerfile.database): fix new dockerfile
This commit is contained in:
parent
4b4c2b0054
commit
a4f1f90497
1 changed files with 2 additions and 1 deletions
|
@ -45,7 +45,8 @@ COPY --from=builder /app/dist/*.whl .
|
|||
COPY --from=builder /wheels/ /wheels/
|
||||
|
||||
# Install the built wheel using pip; again using a wildcard if it's the only file
|
||||
RUN pip install *.whl \
|
||||
RUN pip install --no-cache-dir --find-links=/wheels/ -r requirements.txt \
|
||||
&& pip install *.whl \
|
||||
&& rm -f *.whl
|
||||
|
||||
# Generate prisma client
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue