(feat) proxy server: dockerfile + req

This commit is contained in:
ishaan-jaff 2023-10-21 12:44:12 -07:00
parent 3fac512b74
commit d9cc9fe566
2 changed files with 5 additions and 16 deletions

View file

@ -5,6 +5,6 @@ COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
WORKDIR /app/litellm/proxy
WORKDIR /app/litellm-proxy
EXPOSE 8000
ENTRYPOINT [ "python3", "proxy_cli.py" ]
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]