Skip to content

Commit 15fd9ce

Browse files
authoredApr 4, 2024
Fix requirements and cors origins for nest-server (#225)
1 parent 972571d commit 15fd9ce

File tree

4 files changed

+18
-17
lines changed

4 files changed

+18
-17
lines changed
 

‎src/3.6/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ elif [[ "${MODE}" = 'nest-server' ]]; then
3939
export NEST_SERVER_STDOUT="${NEST_SERVER_STDOUT:-1}"
4040

4141
export NEST_SERVER_ACCESS_TOKEN="${NEST_SERVER_ACCESS_TOKEN}"
42-
export NEST_SERVER_CORS_ORIGINS="${NEST_SERVER_CORS_ORIGINS:-http://localhost:*}"
42+
export NEST_SERVER_CORS_ORIGINS="${NEST_SERVER_CORS_ORIGINS:-*}"
4343
export NEST_SERVER_DISABLE_AUTH="${NEST_SERVER_DISABLE_AUTH:-1}"
4444
export NEST_SERVER_DISABLE_RESTRICTION="${NEST_SERVER_DISABLE_RESTRICTION:-1}"
4545
export NEST_SERVER_ENABLE_EXEC_CALL="${NEST_SERVER_ENABLE_EXEC_CALL:-1}"

‎src/3.7rc1/Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ENV TERM=xterm \
1515
RUN apt-get update && apt-get install -y --no-install-recommends \
1616
automake \
1717
autotools-dev \
18-
build-essential \
18+
build-essential \
1919
ccache \
2020
cmake \
2121
curl \
@@ -42,7 +42,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
4242
libpcre3-dev \
4343
libpython3.10 \
4444
libreadline-dev \
45-
libreadline8 \
45+
libreadline8 \
4646
libtool \
4747
libzmq3-dev \
4848
llvm-dev \
@@ -64,12 +64,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
6464
python3-mpi4py \
6565
python3-nose \
6666
python3-numpy \
67-
python3-pandas \
67+
python3-pandas \
6868
python3-path \
6969
python3-pip \
7070
python3-pytest \
7171
python3-pytest-timeout \
72-
python3-pytest-xdist \
72+
python3-pytest-xdist \
7373
python3-restrictedpython \
7474
python3-scipy \
7575
python3-setuptools \
@@ -109,7 +109,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
109109
-Dwith-openmp=ON \
110110
-Dwith-libneurosim=OFF \
111111
-Dwith-sionlib=OFF \
112-
-Dwith-music='$HOME/.cache/libneurosim.install' \
112+
-Dwith-music='$HOME/.cache/libneurosim.install' \
113113
-Dwith-hdf5=ON \
114114
${SRC_PATH}/nest-simulator-${NEST_VERSION} && \
115115
make && \

‎src/dev/Dockerfile

+11-10
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ENV TERM=xterm \
1515
RUN apt-get update && apt-get install -y --no-install-recommends \
1616
automake \
1717
autotools-dev \
18-
build-essential \
18+
build-essential \
1919
ccache \
2020
cmake \
2121
curl \
@@ -41,7 +41,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
4141
libpcre3-dev \
4242
libpython3.10 \
4343
libreadline-dev \
44-
libreadline8 \
44+
libreadline8 \
4545
libtool \
4646
libzmq3-dev \
4747
llvm-dev \
@@ -63,12 +63,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
6363
python3-mpi4py \
6464
python3-nose \
6565
python3-numpy \
66-
python3-pandas \
66+
python3-pandas \
6767
python3-path \
6868
python3-pip \
6969
python3-pytest \
7070
python3-pytest-timeout \
71-
python3-pytest-xdist \
71+
python3-pytest-xdist \
7272
python3-restrictedpython \
7373
python3-scipy \
7474
python3-setuptools \
@@ -86,7 +86,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
8686
apt-get autoremove
8787

8888
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
9090
RUN ldconfig
9191

9292

@@ -101,7 +101,7 @@ RUN python3 -m pip install -r ${SRC_PATH}/nest-simulator-${NEST_VERSION}/doc/req
101101
RUN chmod +x ${SRC_PATH}/nest-simulator-${NEST_VERSION}/build_support/install_music.sh && \
102102
${SRC_PATH}/nest-simulator-${NEST_VERSION}/build_support/install_music.sh
103103

104-
# # Install libneurosim
104+
# # Install libneurosim
105105
# RUN cd ${SRC_PATH}/nest-simulator-${NEST_VERSION} && \
106106
# PYLIB_DIR="$(python3 -c "import sysconfig; print(sysconfig.get_path('include'))" | sed 's/include/lib/')" && \
107107
# 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 $_ && \
127127
-Dwith-openmp=ON \
128128
-Dwith-libneurosim=OFF \
129129
-Dwith-sionlib=OFF \
130-
-Dwith-music=ON \
130+
-Dwith-music=ON \
131131
-Dwith-hdf5=ON \
132132
${SRC_PATH}/nest-simulator-${NEST_VERSION} && \
133133
make && \
134134
make install
135135

136136
# Install NESTML and more
137137
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 && \
140141
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
142143

143144
RUN python3 -m pip install --force-reinstall --upgrade scipy
144145

‎src/dev/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ elif [[ "${MODE}" = 'nest-server' ]]; then
3939
export NEST_SERVER_STDOUT="${NEST_SERVER_STDOUT:-1}"
4040

4141
export NEST_SERVER_ACCESS_TOKEN="${NEST_SERVER_ACCESS_TOKEN}"
42-
export NEST_SERVER_CORS_ORIGINS="${NEST_SERVER_CORS_ORIGINS:-http://localhost:*}"
42+
export NEST_SERVER_CORS_ORIGINS="${NEST_SERVER_CORS_ORIGINS:-*}"
4343
export NEST_SERVER_DISABLE_AUTH="${NEST_SERVER_DISABLE_AUTH:-1}"
4444
export NEST_SERVER_DISABLE_RESTRICTION="${NEST_SERVER_DISABLE_RESTRICTION:-1}"
4545
export NEST_SERVER_ENABLE_EXEC_CALL="${NEST_SERVER_ENABLE_EXEC_CALL:-1}"

0 commit comments

Comments
 (0)