mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
10 lines
177 B
Docker
10 lines
177 B
Docker
FROM python:3.10
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
|
|
WORKDIR /app/litellm_server
|
|
EXPOSE $PORT
|
|
|
|
CMD exec uvicorn main:app --host 0.0.0.0 --port $PORT
|