Skip to content

Commit

Permalink
Fix regex exoression
Browse files Browse the repository at this point in the history
  • Loading branch information
TeoGiane committed Oct 9, 2023
1 parent e401f38 commit 08ae055
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions resources/docker/test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ WORKDIR /usr
COPY . bayesmix-update

# Generate and apply patch to updtae bayesmix
RUN diff -ruN --exclude=build --exclude=_deps --exclude=.git --exclude='*.pb2.py' bayesmix/ bayesmix-update/ | patch -d bayesmix -p1 \
RUN diff -ruN -x 'build' -x '_deps' -x '.git' -x '*_pb2.py' bayesmix/ bayesmix-update/ | patch -d bayesmix -p1 \
&& rm -rf bayesmix-update

# 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
# # 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 bayesmixpy
# RUN cd python && python3 -m pip install -e .

# Install bayesmixr
# RUN cd R && Rscript --vanilla -e "devtools::install('bayesmixr/', quick = T, args = '--clean')"
Expand Down

0 comments on commit 08ae055

Please sign in to comment.