From 8d3e818fb15fe259593c60a49e4596bc57075d31 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 27 Jan 2024 14:36:30 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e18d5d979..5c0c4ad36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,9 +47,13 @@ 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 /wheels/* --no-index --find-links=/wheels/ && rm -f *.whl && rm -rf /wheels +# Generate prisma client +RUN prisma generate RUN chmod +x entrypoint.sh EXPOSE 4000/tcp +# # Set your entrypoint and command + ENTRYPOINT ["litellm"] -CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--detailed_debug"] \ No newline at end of file +CMD ["--port", "4000"]