From 05081709910da582f3bbb1703875698edf81ecfa Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Thu, 27 Sep 2018 19:12:37 -0400 Subject: [PATCH] Added pip3 installation of NumPy to Dockerfile which is necessary to use system pip3 to install all OpenMC Python prerequisites --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e2365e530..fb5149efd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ RUN apt-get update -y && \ apt-get autoremove # Download Miniconda3 and install Python dependencies +RUN pip3 install numpy #RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh && \ # /bin/bash ~/miniconda.sh -b -p /opt/conda && \ # rm -rf ~/miniconda.sh