mirror of
https://github.com/tiennm99/litellm.git
synced 2026-06-26 03:08:43 +00:00
11 lines
222 B
Docker
11 lines
222 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/openai-proxy
|
|
EXPOSE $PORT
|
|
|
|
CMD exec uvicorn main:app --host 0.0.0.0 --port $PORT |