@@ -15,7 +15,7 @@ ENV TERM=xterm \
15
15
RUN apt-get update && apt-get install -y --no-install-recommends \
16
16
automake \
17
17
autotools-dev \
18
- build-essential \
18
+ build-essential \
19
19
ccache \
20
20
cmake \
21
21
curl \
@@ -41,7 +41,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
41
41
libpcre3-dev \
42
42
libpython3.10 \
43
43
libreadline-dev \
44
- libreadline8 \
44
+ libreadline8 \
45
45
libtool \
46
46
libzmq3-dev \
47
47
llvm-dev \
@@ -63,12 +63,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
63
63
python3-mpi4py \
64
64
python3-nose \
65
65
python3-numpy \
66
- python3-pandas \
66
+ python3-pandas \
67
67
python3-path \
68
68
python3-pip \
69
69
python3-pytest \
70
70
python3-pytest-timeout \
71
- python3-pytest-xdist \
71
+ python3-pytest-xdist \
72
72
python3-restrictedpython \
73
73
python3-scipy \
74
74
python3-setuptools \
@@ -86,7 +86,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
86
86
apt-get autoremove
87
87
88
88
RUN python3 -m pip install --upgrade pip setuptools wheel mock
89
- RUN python3 -m pip install --force-reinstall --upgrade --no-binary=h5py h5py
89
+ RUN python3 -m pip install --force-reinstall --upgrade --no-binary=h5py h5py
90
90
RUN ldconfig
91
91
92
92
@@ -101,7 +101,7 @@ RUN python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/doc/req
101
101
RUN chmod +x ${SRC_PATH}/nest-simulator-${NEST_VERSION}/build_support/install_music.sh && \
102
102
${SRC_PATH}/nest-simulator-${NEST_VERSION}/build_support/install_music.sh
103
103
104
- # # Install libneurosim
104
+ # # Install libneurosim
105
105
# RUN cd ${SRC_PATH}/nest-simulator-${NEST_VERSION} && \
106
106
# PYLIB_DIR="$(python3 -c "import sysconfig; print(sysconfig.get_path('include'))" | sed 's/include/lib/')" && \
107
107
# chmod +x ${SRC_PATH}/nest-simulator-${NEST_VERSION}/build_support/install_csa-libneurosim.sh && \
@@ -127,18 +127,19 @@ RUN mkdir ${SRC_PATH}/nest-build && cd $_ && \
127
127
-Dwith-openmp=ON \
128
128
-Dwith-libneurosim=OFF \
129
129
-Dwith-sionlib=OFF \
130
- -Dwith-music=ON \
130
+ -Dwith-music=ON \
131
131
-Dwith-hdf5=ON \
132
132
${SRC_PATH}/nest-simulator-${NEST_VERSION} && \
133
133
make && \
134
134
make install
135
135
136
136
# Install NESTML and more
137
137
RUN python3 -m pip install --upgrade pip && \
138
- python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/requirements.txt && \
139
- python3 -m pip install nest-desktop --pre && \
138
+ python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/requirements_testing.txt && \
139
+ python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/requirements_nest_server.txt && \
140
+ python3 -m pip install nest-desktop && \
140
141
python3 -m pip uninstall nestml -y && \
141
- python3 -m pip install --upgrade https://github.com/nest/nestml/archive/refs/heads/master.zip
142
+ python3 -m pip install --upgrade https://github.com/nest/nestml/archive/refs/heads/master.zip
142
143
143
144
RUN python3 -m pip install --force-reinstall --upgrade scipy
144
145
0 commit comments