litellm / Dockerfile
sshinmen's picture
Update Dockerfile
49f9e5c verified
Raw
History Blame Contribute Delete
276 Bytes
FROM docker.litellm.ai/berriai/litellm-database:main-stable
# Set working directory
WORKDIR /app
# Copy config file
COPY litellm_config.yaml /app/config.yaml
# Expose port
EXPOSE 7860
# Run LiteLLM
CMD ["--config", "/app/config.yaml", "--port", "7860", "--detailed_debug"]