forked from phoenix/litellm-mirror
15 lines
No EOL
220 B
Docker
15 lines
No EOL
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 |