10 lines
221 B
Docker
10 lines
221 B
Docker
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"]
|