-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathDockerfile
235 lines (199 loc) · 8.88 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# Copyright 2023 Image Analysis Lab, German Center for Neurodegenerative Diseases(DZNE), Bonn
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# DOCUMENTATION FOR BUILD ARGS (use '--build-arg DEVICE=<VALUE>'):
# - BUILD_BASE_IMAGE:
# The base image to build the conda and freesurfer build images from
# - default: ubuntu:22.04
# - RUNTIME_BASE_IMAGE:
# The base image to build the runtime image on.
# - default: ubuntu:22.04
# - FREESURFER_BUILD_IMAGE:
# Image to use to install freesurfer binaries from, the freesurfer binaries
# should be located in /opt/freesurfer in the image.
# - default: build_freesurfer
# - CONDA_BUILD_IMAGE:
# Image to use to install the python environment from, the python environment
# should be in /venv/ in the image.
# - default: build_cuda
# - MAMBA_VERSION:
# Which miniforge file to download to install mamba
# from https://github.com/conda-forge/miniforge/releases/download/
# ${FORGE_VERSION}/Miniforge3-${FORGE_VERSION}-Linux-x86_64.sh
# - default: Miniforge3-24.11.2-1-Linux-x86_64.sh
# DOCUMENTATION FOR TARGETS (use '--target <VALUE>'):
# To select which imaged will be tagged with '-t'
# - runtime:
# Build the "distributable" image, this is the "final" fastsurfer docker image.
# - build_freesurfer:
# Build the freesurfer build image only.
# - build_common:
# Build the basic image with the python environment (hardware/driver-agnostic)
# - build_conda:
# Build the python environment image with cuda/rocm/cpu support
ARG FREESURFER_BUILD_IMAGE=build_freesurfer
ARG CONDA_BUILD_IMAGE=build_conda
ARG RUNTIME_BASE_IMAGE=ubuntu:22.04
ARG BUILD_BASE_IMAGE=ubuntu:22.04
# BUILDKIT_SBOM:SCAN_CONTEXT enables buildkit to provide and scan build images
# this is active by default to provide proper SBOM manifests, however, it may also
# include parts that are not part of the distributed image (specifically build image
# parts installed in the build image, but not transferred to the runtime image such as
# git, wget, the miniconda installer, etc.)
ARG BUILDKIT_SBOM_SCAN_CONTEXT=true
## Start with ubuntu base to build the conda base stage
FROM $BUILD_BASE_IMAGE AS build_base
ENV LANG=C.UTF-8
ENV DEBIAN_FRONTEND=noninteractive
# Install packages needed for build
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
file \
git \
upx \
wget && \
apt clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ARG FORGE_VERSION=24.11.2-1
# Install conda
RUN wget --no-check-certificate -qO ~/miniforge.sh \
https://github.com/conda-forge/miniforge/releases/download/${FORGE_VERSION}/Miniforge3-${FORGE_VERSION}-Linux-x86_64.sh && \
chmod +x ~/miniforge.sh && \
~/miniforge.sh -b -p /opt/miniforge && \
rm ~/miniforge.sh
ENV PATH=/opt/miniforge/bin:$PATH
# create a stage for the common components used across different DEVICE settings
FROM build_base AS build_common
# get install scripts into docker
COPY ./env/fastsurfer.yml ./Docker/conda_pack.sh ./Docker/install_env.py /install/
# SHELL ["/bin/bash", "--login", "-c"]
# Install conda for gpu
ARG DEBUG=false
RUN python /install/install_env.py -m base -i /install/fastsurfer.yml \
-o /install/base-env.yml && \
mamba env create -qy -f "/install/base-env.yml" | tee /install/env-create.log ; \
if [ "${DEBUG}" != "true" ]; then \
rm /install/base-env.yml ; \
fi
FROM build_common AS build_conda
ARG DEBUG=false
ARG DEVICE=cu118
# install additional packages for cuda/rocm/cpu
RUN python /install/install_env.py -m ${DEVICE} -i /install/fastsurfer.yml \
-o /install/${DEVICE}-env.yml && \
mamba env update -q -n "fastsurfer" -f "/install/${DEVICE}-env.yml" \
| tee /install/env-update.log && \
/install/conda_pack.sh "fastsurfer" && \
echo "DEBUG=$DEBUG\nDEVICE=$DEVICE\n" > /install/build_conda.args ; \
if [ "${DEBUG}" != "true" ]; then \
mamba env remove -qy -n "fastsurfer" && \
rm -R /install ; \
fi
# create a stage for pruned Freesurfer
FROM build_base AS build_freesurfer
# get install scripts into docker
COPY ./Docker/install_fs_pruned.sh /install/
SHELL ["/bin/bash", "--login", "-c"]
ARG FREESURFER_URL=default
# install freesurfer and point to new python location
RUN /install/install_fs_pruned.sh /opt --upx --url $FREESURFER_URL && \
rm /opt/freesurfer/bin/fspython && \
rm -R /install && \
ln -s /venv/bin/python3 /opt/freesurfer/bin/fspython
# =======================================================
# Here, we create references to the requested build image
# =======================================================
# This is needed because COPY --from=<image/stage> does not accept variables as part of
# the image/stage name
# selected_freesurfer_build_image -> $FREESURFER_BUILD_IMAGE
FROM $FREESURFER_BUILD_IMAGE AS selected_freesurfer_build_image
# selected_conda_build_image -> $CONDA_BUILD_IMAGE
FROM $CONDA_BUILD_IMAGE AS selected_conda_build_image
# =========================================
# Here, we create the smaller runtime image
# =========================================
FROM $RUNTIME_BASE_IMAGE AS runtime
ENV LANG=C.UTF-8
# Install required packages for freesurfer to dry_run
RUN apt-get update && apt-get install -y --no-install-recommends \
bc \
gawk \
libgomp1 \
libquadmath0 \
time \
tcsh && \
apt clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Add FreeSurfer and python Environment variables
# DO_NOT_SEARCH_FS_LICENSE_IN_FREESURFER_HOME=true deactivates the search for FS_LICENSE in FREESURFER_HOME
ENV OS=Linux \
FS_OVERRIDE=0 \
FIX_VERTEX_AREA="" \
SUBJECTS_DIR=/opt/freesurfer/subjects \
FSF_OUTPUT_FORMAT=nii.gz \
FREESURFER_HOME=/opt/freesurfer \
PYTHONUNBUFFERED=0 \
MPLCONFIGDIR=/tmp \
XDG_CACHE_HOME=/tmp/xdgcache \
PATH=/venv/bin:/opt/freesurfer/bin:$PATH \
MPLCONFIGDIR=/tmp/matplotlib-config \
DO_NOT_SEARCH_FS_LICENSE_IN_FREESURFER_HOME="true"
# create matplotlib config dir; make sure we use bash and activate conda env
# (in case someone starts this interactively)
RUN mkdir -m 777 $MPLCONFIGDIR && \
echo "source /venv/bin/activate" >> /etc/bash.bashrc
SHELL ["/bin/bash", "--login", "-c"]
# Copy fastsurfer venv and pruned freesurfer from build images
# Note, since COPY does not support variables in the --from parameter, so we point to a
# reference here, and the
# seletced_<name>_build_image is a only a reference to $<NAME>_BUILD_IMAGE
COPY --from=selected_freesurfer_build_image /opt/freesurfer /opt/freesurfer
COPY --from=selected_conda_build_image /venv /venv
# Fix for cuda11.8+cudnn8.7 bug+warning: https://github.com/pytorch/pytorch/issues/97041
RUN if [[ "$DEVICE" == "cu118" ]] ; then cd /venv/python3.10/site-packages/torch/lib && ln -s libnvrtc-*.so.11.2 libnvrtc.so ; fi
# Copy fastsurfer over from the build context and add PYTHONPATH
COPY . /fastsurfer/
ENV PYTHONPATH=/fastsurfer:/opt/freesurfer/python/packages \
FASTSURFER_HOME=/fastsurfer \
PATH=/fastsurfer:$PATH
# Download all remote network checkpoints already, compile all FastSurfer scripts into
# bytecode and update the build file with checkpoints md5sums and pip packages.
RUN cd /fastsurfer ; python3 FastSurferCNN/download_checkpoints.py --all && \
python3 -m compileall * && \
python3 FastSurferCNN/version.py --sections +git+checkpoints+pip \
--build_cache Docker/BUILD.info -o BUILD.info
# TODO: SBOM info of FastSurfer and FreeSurfer are missing, it is unclear how to add
# those at the moment, as the buildscanner syft does not find simple package.json
# or pyproject.toml files right now. The easiest option seems to be to "setup"
# fastsurfer and freesurfer via pip install.
#ENV BUILDKIT_SCAN_SOURCE_EXTRAS="/fastsurfer"
#ARG BUILDKIT_SCAN_SOURCE_EXTRAS="/fastsurfer"
#RUN <<EOF > /fastsurfer/package.json
#{
# "name": "fastsurfer",
# "version": "$(python3 FastSurferCNN/version.py)",
# "author": "David Kügler <[email protected]>"
#}
#EOF
# Set FastSurfer workdir and entrypoint
# the script entrypoint ensures that our conda env is active
USER nonroot
WORKDIR "/fastsurfer"
ENTRYPOINT ["/fastsurfer/Docker/entrypoint.sh","/fastsurfer/run_fastsurfer.sh"]
CMD ["--help"]
FROM runtime AS runtime_cuda
# to support AWS docker images, see Issue #352
# https://sarus.readthedocs.io/en/stable/user/custom-cuda-images.html#controlling-the-nvidia-container-runtime
ENV NVIDIA_VISIBLE_DEVICES=all \
NVIDIA_DRIVER_CAPABILITIES=compute,utility \
NVIDIA_REQUIRE_CUDA="cuda>=8.0"