litellm / Dockerfile
zealott3528's picture
Update Dockerfile
660a075 verified
raw
history blame contribute delete
280 Bytes
from ghcr.io/berriai/litellm:main-latest
ENV TZ=Asia/Shanghai SERVER_ROOT_PATH=/hf/v1 OPENAI_API_KEY=any MASTER_KEY="sk-12345"
COPY ./config.yaml /app/config.yaml
EXPOSE 7860
ENTRYPOINT ["litellm"]
CMD [ "--config", "/app/config.yaml", "--port", "7860", "--num_workers", "8" ]