litellm / Dockerfile
lemonteaa's picture
Create Dockerfile
9f3698b verified
raw
history blame
212 Bytes
FROM ghcr.io/berriai/litellm-database:main-latest
WORKDIR /app
COPY litellm_config.yaml .
RUN chmod +x entrypoint.sh
RUN pip install langfuse>=2.0.0
CMD ["--port", "7860", "--config", "litellm_config.yaml"]