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