This repository was archived by the owner on Mar 10, 2025. It is now read-only.
File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 18
18
- NAME=python_2.7 SRC_IMAGE=python:2.7-buster SRC_PYTHON_EXE=python
19
19
- NAME=pypy_3 SRC_IMAGE=pypy:3 SRC_PYTHON_EXE=pypy3
20
20
- NAME=pypy_2 SRC_IMAGE=pypy:2 SRC_PYTHON_EXE=pypy
21
- - NAME=anaconda_3 SRC_IMAGE=continuumio/anaconda3:latest SRC_PYTHON_EXE=python
21
+ - NAME=anaconda_3 SRC_IMAGE=continuumio/anaconda3:latest SRC_PYTHON_EXE=python
22
22
- NAME=anaconda_2 SRC_IMAGE=continuumio/anaconda2:latest SRC_PYTHON_EXE=python
23
23
24
24
script :
Original file line number Diff line number Diff line change 10
10
installs = ['linux_install_scripts/libs.sh' ,
11
11
'linux_install_scripts/python_libs.sh' ,
12
12
'linux_install_scripts/baron.sh' ,
13
- 'linux_install_scripts/cbc.sh' ,
14
13
# 'linux_install_scripts/mipcl.sh',
15
14
'linux_install_scripts/gsl.sh' ,
16
15
'linux_install_scripts/gjh.sh' ,
17
16
'linux_install_scripts/gjh_asl_json.sh' ,
18
17
'linux_install_scripts/gams.sh' ,
19
18
'linux_install_scripts/glpk.sh' ,
20
- 'linux_install_scripts/ipopt.sh'
19
+ 'linux_install_scripts/ipopt.sh' ,
20
+ 'linux_install_scripts/cbc.sh'
21
21
]
22
22
dynamic_vars_filename = '/root/dynamic_vars.out'
23
23
Original file line number Diff line number Diff line change @@ -3,17 +3,18 @@ RUN echo "" && \
3
3
echo " INSTALLING COMMON LIBS" && \
4
4
echo " ======================" && \
5
5
echo " "
6
- RUN apt-get -q update && \
6
+ RUN dpkg --add-architecture i386 && \
7
+ apt-get -q update && \
7
8
apt-get -q -y --no-install-recommends install \
8
9
build-essential libssl-dev libffi-dev \
9
10
wget zip unzip \
10
11
git subversion cmake \
11
- gfortran glpk-utils \
12
+ gfortran \
12
13
libgfortran4 \
13
14
libopenblas-dev \
14
15
liblapack-dev \
15
16
openmpi-bin openmpi-common libopenmpi-dev \
16
- libc6 libncurses5 libstdc++6 \
17
+ libc6:i386 libncurses5:i386 libstdc++6:i386 \
17
18
enchant \
18
19
unixodbc unixodbc-dev && \
19
20
rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments