forked from nest/nest-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
curl \ | ||
cython3 \ | ||
freeglut3-dev \ | ||
git \ | ||
gosu \ | ||
jq \ | ||
junitparser \ | ||
|
@@ -62,7 +63,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
python3-jupyter-core \ | ||
python3-mpi4py \ | ||
python3-nose \ | ||
python3-numpy \ | ||
python3-pandas \ | ||
python3-path \ | ||
python3-pip \ | ||
|
@@ -91,7 +91,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
wget "https://github.com/nest/nest-simulator/archive/refs/tags/v${NEST_VERSION}.tar.gz" -P ${SRC_PATH} && \ | ||
tar -xzf v${NEST_VERSION}.tar.gz && \ | ||
python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/doc/requirements.txt && \ | ||
python3 -m pip install sphinx_gallery==0.10.1 && \ | ||
python3 -m pip install sphinx_gallery==0.10.1 'numpy<=1.26' && \ | ||
chmod +x ${SRC_PATH}/nest-simulator-${NEST_VERSION}/build_support/install_music.sh && \ | ||
${SRC_PATH}/nest-simulator-${NEST_VERSION}/build_support/install_music.sh && \ | ||
mkdir ${SRC_PATH}/nest-build && cd $_ && \ | ||
|
@@ -113,14 +113,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
${SRC_PATH}/nest-simulator-${NEST_VERSION} && \ | ||
make && \ | ||
make install && \ | ||
python3 -m pip install --upgrade pip && \ | ||
python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/requirements_testing.txt && \ | ||
python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/requirements_nest_server.txt && \ | ||
python3 -m pip install --upgrade pygsl && \ | ||
python3 -m pip install --upgrade pip setuptools wheel && \ | ||
python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/requirements.txt && \ | ||
python3 -m pip install --upgrade nest-desktop && \ | ||
python3 -m pip install --upgrade nestml && \ | ||
python3 -m pip install --force-reinstall --upgrade scipy | ||
|
||
python3 -m pip install --upgrade scipy && \ | ||
python3 -m pip install --upgrade gsl wheel setuptools swig && \ | ||
python3 -m pip install --upgrade pygsl@git+https://github.com/pygsl/[email protected] | ||
|
||
COPY entrypoint.sh /usr/local/bin/entrypoint.sh | ||
RUN chmod +x /usr/local/bin/entrypoint.sh | ||
|
||
|