From fd7f17b11bbef89420f4a8bf6a1e3d2a3a94ed2d Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 17 Nov 2023 17:37:00 -0800 Subject: [PATCH] (chore) remove old dockerfile --- Dockerfile | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 179629c9a..000000000 --- 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