diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 179629c9a5..0000000000 --- a/Dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -FROM python:3.10 - -COPY . /app -WORKDIR /app -RUN pip install -r requirements.txt - -WORKDIR /app/litellm_server -EXPOSE $PORT - -CMD exec uvicorn main:app --host 0.0.0.0 --port $PORT