Set WORKDIR to /app before installing requirements in Dockerfile.

This commit is contained in:
coconut49 2023-10-17 23:09:11 +08:00
parent 5a2e646040
commit c723f7282d

View file

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