Skip to content

Commit

Permalink
check it in
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed May 28, 2024
1 parent 5bb7039 commit 6f2e36e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 6f2e36e

Please sign in to comment.