File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -11,22 +11,24 @@ COPY docker/files/neurodebian.gpg /usr/local/etc/neurodebian.gpg
11
11
RUN apt-get update && \
12
12
apt-get install -y --no-install-recommends \
13
13
apt-utils \
14
- curl \
14
+ autoconf \
15
+ build-essential \
15
16
bzip2 \
16
17
ca-certificates \
17
- xvfb \
18
- build-essential \
19
- autoconf \
18
+ curl \
19
+ git \
20
+ graphviz \
20
21
libtool \
22
+ locales \
21
23
lsb-release \
22
- pkg-config \
23
- graphviz \
24
24
pandoc \
25
25
pandoc-citeproc \
26
- git && \
26
+ pkg-config \
27
+ xvfb && \
27
28
curl -sSL https://deb.nodesource.com/setup_14.x | bash - && \
28
29
apt-get install -y --no-install-recommends \
29
30
nodejs && \
31
+ locale-gen en_US.UTF-8 && \
30
32
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
31
33
32
34
# Installing Neurodebian packages (workbench, git-annex)
@@ -258,7 +260,7 @@ COPY . /src/nibabies
258
260
# Force static versioning within container
259
261
RUN echo "${VERSION}" > /src/nibabies/nibabies/VERSION && \
260
262
echo "include nibabies/VERSION" >> /src/nibabies/MANIFEST.in && \
261
- pip install --no-cache-dir "/src/nibabies[all]" && \
263
+ pip install --no-cache-dir -e "/src/nibabies[all]" && \
262
264
rm ${FREESURFER_HOME}/build-stamp.txt
263
265
264
266
# Final settings
You can’t perform that action at this time.
0 commit comments