From 57e7ec6d5a4b29f5e243b8e7a0ec9b4f3cc28187 Mon Sep 17 00:00:00 2001 From: Thomas MENARD <thomas.menard@pasteur.fr> Date: Tue, 4 Jun 2019 10:55:20 +0200 Subject: [PATCH] Add Dockerfile, gitlab-ci --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 46c11ea..d96c753 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 -- GitLab