mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
9 lines
No EOL
154 B
Docker
9 lines
No EOL
154 B
Docker
FROM python:3.10
|
|
|
|
COPY . /app
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
WORKDIR /app/litellm/proxy
|
|
|
|
ENTRYPOINT [ "/bin/bash", "/app/litellm/proxy/start.sh" ] |