diff --git a/Dockerfile b/Dockerfile index 5d5d66b..698aeed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ WORKDIR /app # Install dependencies first for better caching COPY requirements.txt /app/ -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r /app/requirements.txt # Copy the rest of the application COPY . /app