CoolFace
Apppublic

cs70/litellm

sourceHugging Faceupdated 17d agoView on Hugging Face
0likes
Dockerfile11 linesDownload Raw Back to root
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"]