litellm / Dockerfile
elmerzole's picture
Update Dockerfile
b67ff1d verified
raw
history blame contribute delete
236 Bytes
from ghcr.io/berriai/litellm:main-latest
ENV TZ=Asia/Kolkata
ENV OPENAI_API_KEY=any
COPY ./config.yaml /app/config.yaml
EXPOSE 7860
ENTRYPOINT ["litellm"]
CMD [ "--config", "/app/config.yaml", "--port", "7860", "--num_workers", "8" ]