From 10e8330b204c5eaef30d87e04649c7e373680997 Mon Sep 17 00:00:00 2001 From: TeoGiane Date: Mon, 9 Oct 2023 22:54:33 +0200 Subject: [PATCH] Restore Dockerfile --- resources/docker/test/Dockerfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/resources/docker/test/Dockerfile b/resources/docker/test/Dockerfile index b1ff42a4..889eee78 100644 --- a/resources/docker/test/Dockerfile +++ b/resources/docker/test/Dockerfile @@ -16,14 +16,14 @@ RUN diff -ruN -x 'build' -x '_deps' -x '.git' -x '*_pb2.py' bayesmix/ bayesmix-u # Set working directory to /usr WORKDIR /usr/bayesmix -# # Compile test_bayesmix and run_mcmc after apply changes -# RUN cd build \ -# && cmake -DDISABLE_PLOTS=ON .. \ -# && make test_bayesmix \ -# && make run_mcmc - -# # Install bayesmixpy -# RUN cd python && python3 -m pip install -e . +# Compile test_bayesmix and run_mcmc after apply changes +RUN cd build \ + && cmake -DDISABLE_PLOTS=ON .. \ + && make test_bayesmix \ + && make run_mcmc + +# Install bayesmixpy +RUN cd python && python3 -m pip install -e . # Install bayesmixr # RUN cd R && Rscript --vanilla -e "devtools::install('bayesmixr/', quick = T, args = '--clean')"