From cc35d8e3924a9b4d4b2da43d8ec3ffb24099fe89 Mon Sep 17 00:00:00 2001 From: edouard-mangel Date: Tue, 14 Nov 2017 00:52:05 +0100 Subject: [PATCH] Update Dockerfile to add requests module Otherwise tests won't run. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7834d00d6..566988b89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get install -y locales && \ ENV LC_ALL C.UTF-8 # do we need all of these, maybe remove some of them? -RUN pip install imageio numpy scipy matplotlib pandas sympy nose decorator tqdm pillow pytest +RUN pip install imageio numpy scipy matplotlib pandas sympy nose decorator tqdm pillow pytest requests # install scikit-image after the other deps, it doesn't cause errors this way. RUN pip install scikit-image sklearn