Set WORKDIR to /app before installing requirements in Dockerfile.

This commit is contained in:
coconut49 2023-10-17 23:09:11 +08:00
parent d4f7fb70ed
commit 266b3b82f5
No known key found for this signature in database

View file

@ -2,6 +2,7 @@ FROM python:3.10
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
WORKDIR /app/litellm/proxy