File size: 168 Bytes
4ec8dba
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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