mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
9 lines
No EOL
168 B
Docker
9 lines
No EOL
168 B
Docker
FROM python:3.10
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
|
|
EXPOSE $PORT
|
|
|
|
CMD litellm --host 0.0.0.0 --port $PORT --workers 10 --config config.yaml |