(fix) proxy server docker file

This commit is contained in:
ishaan-jaff 2023-10-21 16:24:34 -07:00
parent 330a89bdb1
commit 6798cebbb9
2 changed files with 15 additions and 0 deletions

10
openai-proxy/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3.10
ENV LITELLM_CONFIG_PATH="/litellm.secrets.toml"
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE $PORT
CMD exec uvicorn main:app --host 0.0.0.0 --port $PORT

View file

@ -0,0 +1,5 @@
openai
fastapi
uvicorn
boto3
litellm