From cde13301ca27b4274d0ddc79b4da770df0c8b025 Mon Sep 17 00:00:00 2001 From: s407323 Date: Fri, 26 Apr 2019 13:56:31 +0200 Subject: [PATCH] pip install pandas, numpy --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 99d330a..862c7a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,8 @@ RUN apt-get update \ && ln -s /usr/bin/python3 python \ && pip3 install --upgrade pip +RUN pip3 install pandas && pip3 install numpy + RUN git clone https://github.com/usnistgov/SCTK.git WORKDIR SCTK RUN make config && make all && make check && make install && make doc