Initial commit

This commit is contained in:
alex alves
2026-06-15 11:16:17 -03:00
commit 0080a47d3d
9 changed files with 558 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
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"]