diff --git a/Dockerfile b/Dockerfile index 26bc39224..088b47a20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,14 @@ # Base image FROM python:3.9-slim -# Install the project dependencies -RUN pip install -r /app/litellm/requirements.txt +# Set the working directory to /app +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Install any needed packages specified in requirements.txt +RUN pip install --no-cache-dir -r requirements.txt EXPOSE 4000/tcp