From c723f7282d0464efffa19ea0e81d454adf68bced Mon Sep 17 00:00:00 2001 From: coconut49 Date: Tue, 17 Oct 2023 23:09:11 +0800 Subject: [PATCH] Set WORKDIR to /app before installing requirements in Dockerfile. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index de70fd847a..93cf54d3fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM python:3.10 COPY . /app +WORKDIR /app RUN pip install -r requirements.txt WORKDIR /app/litellm/proxy