From 6f2e36e96c5219b39bb9bd52c93a42e5bc7f814b Mon Sep 17 00:00:00 2001 From: Morgante Pell Date: Mon, 27 May 2024 17:34:44 -0700 Subject: [PATCH] check it in --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2d26725a7a7d..78ac85eaa05e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,7 @@ 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 -# copy in the requirmeents for morons +# copy in our custom requirements COPY custom/requirements.txt /app/custom/requirements.txt RUN pip install -r custom/requirements.txt @@ -71,6 +71,9 @@ RUN chmod +x entrypoint.sh EXPOSE 4000/tcp +# Copy in our config +COPY custom/config.yaml /app/config.yaml + ENTRYPOINT ["litellm"] # Append "--detailed_debug" to the end of CMD to view detailed debug logs