From b395060793b9aaad6ea0afe44fc2f0306096d287 Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Sun, 23 Sep 2018 13:43:02 -0400 Subject: [PATCH] Now install Python API in editable mode to allow openmc.data.reconstruct to be usable by test suite --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 4eacc8b02f..e3923f4b57 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -37,7 +37,7 @@ RUN git clone https://github.com/wbinventor/openmc.git /opt/openmc && \ cd /opt/openmc && mkdir -p build && cd build && \ cmake -Doptimize=on -DHDF5_PREFER_PARALLEL=on .. && \ make && make install && \ - cd .. && python setup.py install + cd .. && pip install -e . # Download cross sections (NNDC and WMP) and ENDF data needed by test suite RUN mkdir /opt/openmc/data