diff --git a/Dockerfile b/Dockerfile
index 46c11ea64b133818ea4dbed1ae6a52a5550db5e1..d96c75321bb51d6c6017153046c7c3f4e720c2c8 100755
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,7 @@ ENV PATH /env/bin:$PATH
 
 # Install pip dependencies
 ADD requirements.txt /app/requirements.txt
-RUN /env/bin/pip install --upgrade pip && /env/bin/pip install -r /app/requirements.txt
+RUN /env/bin/pip install --default-timeout=100 --upgrade pip && /env/bin/pip install -r /app/requirements.txt
 
 # We add the current content of the git repo in the /app directory
 ADD . /app