generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (16 loc) · 712 Bytes
/
Dockerfile
File metadata and controls
21 lines (16 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Python version can be changed, e.g.
# FROM python:3.8
# FROM docker.io/fnndsc/conda:python3.10.2-cuda11.6.0
FROM docker.io/fnndsc/conda:python3.10.6
LABEL org.opencontainers.image.authors="FNNDSC <dev@babyMRI.org>" \
org.opencontainers.image.title="Cortical Thickness" \
org.opencontainers.image.description="A ChRIS plugin wrapper for cortical_thickness and some distortion metrics"
WORKDIR /usr/local/src/pl-cortical_thickness
# install numpy using conda for cross-platform support
RUN conda install -c conda-forge numpy=1.23.3
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
ARG extras_require=none
RUN pip install ".[${extras_require}]"
CMD ["surf_results", "--help"]