From 6fddd078b941e7e5982d4d85ee33ed3b8d5e538d Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 30 Nov 2023 08:57:44 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90277b9be..dccb6ccf9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,6 @@ # Base image FROM python:3.9-slim -# Copy the project files to the working directory -COPY litellm /app/litellm - -# Set the working directory -WORKDIR /app/litellm - # Install the project dependencies COPY requirements.txt /app/litellm/requirements.txt RUN pip install -r requirements.txt