File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:16 .04
1+ FROM ubuntu:22 .04
22
3- RUN apt-get update \
4- && apt-get install -y wget
5- RUN wget -O /etc/apt/sources.list.d/neurodebian.sources.list http://neuro.debian.net/lists/xenial .us-ca.full
6- RUN apt-key adv --recv-keys --keyserver hkp://pgp.mit.edu:80 0xA5D32F012649A5A9
3+ RUN apt-get update -qq \
4+ && apt-get install -y -q --no-install-recommends wget gnupg2
5+ RUN wget -O- http://neuro.debian.net/lists/jammy .us-ca.libre | tee /etc/apt/sources.list.d/neurodebian.sources.list
6+ RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com 0xA5D32F012649A5A9
77
88# Run apt-get calls
9- RUN apt-get update \
10- && apt-get install -y python3-pip python3-matplotlib python3-scipy \
9+ RUN apt-get update -qq \
10+ && apt-get install -y -q --no-install-recommends python3-pip python3-matplotlib python3-scipy \
1111 python3-nibabel python3-sklearn
1212
13- RUN pip3 install nilearn==0.2.6
13+ RUN pip3 install nilearn==0.9.2
1414RUN mkdir -p /code
1515
1616COPY run.py /code/run.py
You can’t perform that action at this time.
0 commit comments