From 8ce00ed748cb686b4522f551e82fdf836c60a0fa Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 17 May 2023 19:07:28 -0700 Subject: [PATCH] Add a long timeout on pipg --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e8f035d..15c0c0b7 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.8 as build ADD app/requirements.txt /requirements.txt -RUN pip install --no-cache-dir -q -r requirements.txt +RUN pip install --default-timeout=100 --no-cache-dir -q -r requirements.txt FROM python:3.8-slim RUN apt-get update && apt-get install -y --no-install-recommends imagemagick \