mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-11 01:05:19 +00:00
15 lines
220 B
Docker
15 lines
220 B
Docker
FROM python:3.10
|
|
|
|
RUN pip install poetry
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
WORKDIR /app/litellm/proxy
|
|
|
|
RUN python proxy_cli.py --config -f /app/secrets_template.toml
|
|
|
|
RUN python proxy_cli.py |