fix: wrap official LiteLLM entrypoint for ADC

This commit is contained in:
Codex
2026-07-22 00:40:31 -07:00
parent 4ac58e587f
commit 6a9647a3c4
4 changed files with 19 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM ghcr.io/berriai/litellm:main-stable
USER root
RUN apk add --no-cache coreutils
COPY vertex-entrypoint.sh /app/vertex-entrypoint.sh
RUN chmod 0755 /app/vertex-entrypoint.sh
ENTRYPOINT ["/app/vertex-entrypoint.sh"]