From 57df87120a061066be28f21d746eacd1392feada Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 30 Nov 2023 09:00:23 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dccb6ccf9..26bc39224 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,7 @@ FROM python:3.9-slim # Install the project dependencies -COPY requirements.txt /app/litellm/requirements.txt -RUN pip install -r requirements.txt +RUN pip install -r /app/litellm/requirements.txt EXPOSE 4000/tcp