Skip to content

Commit

Permalink
Merge pull request #35 from felipenoris/fn/symphony
Browse files Browse the repository at this point in the history
new SYMPHONY installation method
  • Loading branch information
felipenoris authored Aug 2, 2019
2 parents 340e920 + 22f4522 commit 55df745
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -262,18 +262,15 @@ RUN R -e "IRkernel::installspec(user = FALSE)"
ADD svn-servers /etc/subversion/servers

# coin SYMPHONY
# https://projects.coin-or.org/SYMPHONY
# https://github.com/coin-or/SYMPHONY
ENV SYMPHONY_VER 5.6

RUN git clone --depth=1 --branch=stable/$SYMPHONY_VER https://github.com/coin-or/SYMPHONY SYMPHONY-$SYMPHONY_VER \
&& cd SYMPHONY-$SYMPHONY_VER \
&& git clone --depth=1 --branch=stable/0.8 https://github.com/coin-or-tools/BuildTools/ \
&& chmod u+x ./BuildTools/get.dependencies.sh \
&& ./BuildTools/get.dependencies.sh fetch --no-third-party \
&& ./configure \
&& make -j"$(nproc --all)" \
&& make -j"$(nproc --all)" install \
&& cd .. && rm -rf SYMPHONY-$SYMPHONY_VER
RUN git clone https://github.com/coin-or/coinbrew \
&& cd coinbrew \
&& ./coinbrew fetch --no-prompt SYMPHONY:stable/$SYMPHONY_VER \
&& ./coinbrew build --no-prompt SYMPHONY --prefix=/usr/local --parallel-jobs="$(nproc --all)" \
&& ./coinbrew install SYMPHONY \
&& cd .. && rm -rf coinbrew

# bash Jupyter kernel
RUN source activate py3 && pip install bash_kernel \
Expand Down

0 comments on commit 55df745

Please # to comment.