Files
litellm-oci/Dockerfile
2026-06-15 11:16:17 -03:00

14 lines
349 B
Docker

FROM docker.litellm.ai/berriai/litellm:main-latest
USER root
RUN pip install --no-cache-dir "oci>=2.150.0"
WORKDIR /app
COPY oci_embedding_handler.py /app/oci_embedding_handler.py
COPY config.yaml /app/config.yaml
ENV PYTHONPATH=/app
# Base image entrypoint already launches litellm proxy.
CMD ["--config", "/app/config.yaml", "--port", "4000"]