cs70/litellm
0
1FROM docker.litellm.ai/berriai/litellm:latest2 3# Expose the Hugging Face Spaces port4EXPOSE 78605ENV PORT=78606 7# Copy your config into the container8COPY litellm_config.yaml /app/config.yaml9 10# Start liteLLM proxy with your config11CMD ["--config", "/app/config.yaml", "--port", "7860", "--host", "0.0.0.0"]