-
Notifications
You must be signed in to change notification settings - Fork 32
/
Dockerfile
92 lines (77 loc) · 2.7 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
FROM jupyter/minimal-notebook
MAINTAINER Marijn van Vliet <[email protected]>
# Install core debian packages
USER root
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get -yq dist-upgrade \
&& apt-get install -yq --no-install-recommends \
openssh-client \
vim \
curl \
gcc \
&& apt-get clean
# Xvfb
RUN apt-get install -yq --no-install-recommends \
xvfb \
x11-utils \
libx11-dev \
qt6-base-dev \
&& apt-get clean
ENV DISPLAY=:99
# Switch to notebook user
USER $NB_UID
# Upgrade the package managers
# RUN pip install --upgrade pip
# RUN npm i npm@latest -g
# Install Python packages
RUN pip install \
vtk \
numpy \
scipy \
pandas \
pyqt6 \
xvfbwrapper \
pyvista \
pyvistaqt \
ipympl \
ipywidgets \
ipyevents \
pillow \
RISE \
scikit-learn \
nibabel \
mne \
mne-rsa \
trame \
trame-vuetify \
trame-vtk \
trame_jupyter_extension \
https://github.com/aaltoimaginglanguage/conpy/archive/master.zip \
https://github.com/wmvanvliet/posthoc/archive/master.zip
# Clone the repository. First fetch the hash of the latest commit, which will
# invalidate docker's cache when new things are pushed to the repository. See:
# https://stackoverflow.com/questions/36996046
ADD https://api.github.com/repos/wmvanvliet/neuroscience_tutorials/git/refs/heads/master version.json
RUN git init . && \
git remote add origin https://github.com/wmvanvliet/neuroscience_tutorials.git && \
git pull origin master
# Download the datasets
RUN wget "https://github.com/wmvanvliet/neuroscience_tutorials/releases/download/2/mne-intro-data.zip" -O mne-intro-data.zip
RUN unzip mne-intro-data.zip -d mne-intro/
RUN rm mne-intro-data.zip
RUN wget "https://github.com/wmvanvliet/neuroscience_tutorials/releases/download/2/eeg-bci-data.zip" -O eeg-bci-data.zip
RUN unzip eeg-bci-data.zip -d eeg-bci/
RUN rm eeg-bci-data.zip
RUN wget "https://github.com/wmvanvliet/neuroscience_tutorials/releases/download/2/conpy-intro-data.zip" -O conpy-intro-data.zip
RUN unzip conpy-intro-data.zip -d conpy-intro/
RUN rm conpy-intro-data.zip
RUN wget "https://github.com/wmvanvliet/neuroscience_tutorials/releases/download/2/eeg-erp-data.zip" -O eeg-erp-data.zip
RUN unzip eeg-erp-data.zip -d eeg-erp/
RUN rm eeg-erp-data.zip
RUN wget "https://github.com/wmvanvliet/neuroscience_tutorials/releases/download/2/rsa-data.zip" -O rsa-data.zip
RUN unzip rsa-data.zip -d rsa/
RUN rm rsa-data.zip
# Configure the MNE raw browser window to use the full width of the notebook
RUN ipython -c "import mne; mne.set_config('MNE_BROWSE_RAW_SIZE', '9.8, 7')"
# Add an x-server to the entrypoint. This is needed by PyVista
ENTRYPOINT ["tini", "-g", "--", "xvfb-run"]