From 7845cece6b34dd801bebe872dfb83a1acef32255 Mon Sep 17 00:00:00 2001 From: Quinn Casey Date: Mon, 21 Feb 2022 10:27:03 -0800 Subject: [PATCH] Add timeout to `pip install` Attempt to fix `ConnectionResetError` seen [here](https://github.com/paperless-ngx/paperless-ngx/runs/5275984654?check_suite_focus=true) and [here](https://github.com/paperless-ngx/paperless-ngx/runs/5259904053?check_suite_focus=true) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8ddb56479..63cfee19c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,8 +63,8 @@ RUN apt-get update \ build-essential \ libpq-dev \ libqpdf-dev \ - && python3 -m pip install --upgrade --no-cache-dir supervisor \ - && python3 -m pip install --no-cache-dir -r ../requirements.txt \ + && python3 -m pip install --default-timeout=1000 --upgrade --no-cache-dir supervisor \ + && python3 -m pip install --default-timeout=1000 --no-cache-dir -r ../requirements.txt \ && apt-get -y purge build-essential libqpdf-dev \ && apt-get -y autoremove --purge \ && rm -rf /var/lib/apt/lists/*