-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
33 lines (33 loc) · 960 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM debian:10.8
RUN apt-get update
RUN apt-get -y install \
git \
build-essential \
python3-numpy python3-scipy python3-matplotlib python3-pip \
ninja-build
RUN pip3 install meson jupyterlab pytry
RUN git clone https://github.com/nengo/nengo \
&& cd nengo \
&& pip3 install -e . \
&& cd ..
RUN git clone https://github.com/astoeckel/libbioneuronqp \
&& cd libbioneuronqp \
&& git checkout ebbc0e2a81e2c6f1fef89ec8765022f1bb1f5eff \
&& git submodule init \
&& git submodule update \
&& mkdir build \
&& cd build \
&& meson .. \
&& ninja install \
&& cd .. \
&& pip3 install -e . \
&& cd ..
RUN git clone https://github.com/astoeckel/nengo-bio \
&& cd nengo-bio \
&& git checkout 8ff2274f8f5e09877ed0a554ca268f9fa396e3a5 \
&& pip3 install -e . \
&& cd ..
EXPOSE 4567/TCP
ENV LD_LIBRARY_PATH=/libbioneuronqp/build/
ADD . /cogsci2020-cerebellum
CMD cd /cogsci2020-cerebellum && jupyter-lab --allow-root --port 4567 --ip 0.0.0.0 --no-browser