litellmprv / Dockerfile
elmerzole's picture
Update Dockerfile
02ad5d2 verified
raw
history blame
267 Bytes
from ghcr.io/berriai/litellm:main-latest
ENV TZ=Asia/Kolkata
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" ]