litellm-mirror/Dockerfile
2023-10-21 13:50:48 -07:00

10 lines
No EOL
194 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 ["python3", "main.py"]