diff --git a/Dockerfile b/Dockerfile index 49794ff..56282b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app COPY requirements.txt . # Install any needed packages specified in requirements.txt -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install -r requirements.txt # Copy the rest of the application code into the container COPY . .