From 95da512555c018785c4aed307a7c33ab760fadf2 Mon Sep 17 00:00:00 2001 From: Aayush Agnihotri <68517064+Aayush-Agnihotri@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:20:54 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 698fa69..ec3e3b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,5 @@ WORKDIR /usr/src/app COPY . . ENV MAX_CONCURRENT_PIP=4 RUN pip3 install --upgrade pip -RUN pip3 install --force-reinstall -r requirements.txt +RUN pip3 install --exists-action w -r requirements.txt CMD python3 app.py