mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-19 10:19:07 +00:00
10 lines
233 B
Docker
10 lines
233 B
Docker
FROM python:3.10
|
|
|
|
ENV LITELLM_CONFIG_PATH="/litellm.secrets.toml"
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
|
|
WORKDIR /app/litellm-proxy
|
|
EXPOSE 8000
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", $PORT] |