Files
litellm/Dockerfile
T
Krish Dholakia 751e9f07f3 Update Dockerfile
2023-10-25 11:16:17 -07:00

12 lines
223 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