litellm / Dockerfile
spitfire4794's picture
Update Dockerfile
4565769 verified
Raw
History Blame Contribute Delete
271 Bytes
# Use the database-specific LiteLLM image (crucial for Postgres support)
FROM ghcr.io/berriai/litellm-database:latest
WORKDIR /app
COPY config.yaml /app/config.yaml
EXPOSE 7860
# CMD to run the proxy on port 7860
CMD ["--config", "/app/config.yaml", "--port", "7860"]