diff --git a/Dockerfile b/Dockerfile index 42b223b1f..0bb60f06f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" ] \ No newline at end of file +CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 9f6f2ca08..b7d6e99bf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,16 +1,5 @@ openai -python-dotenv -tiktoken -importlib-metadata -tokenizers -click -jinja2 -certifi -appdirs -backoff -boto3 -uvicorn fastapi -tomli -appdirs -tomli-w \ No newline at end of file +uvicorn +boto3 +litellm \ No newline at end of file