-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
40 lines (32 loc) · 1.08 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
# Docker file for the mri10yr06mo01da_normal plugin app
#
# Build with
#
# docker build -t <name> .
#
# For example if building a local version, you could do:
#
# docker build -t local/pl-mri10yr06mo01da_normal .
#
# In the case of a proxy (located at 192.168.13.14:3128), do:
#
# docker build --build-arg http_proxy=http://192.168.13.14:3128 --build-arg UID=$UID -t local/pl-mri10yr06mo01da_normal .
#
# To run an interactive shell inside this container, do:
#
# docker run -ti --entrypoint /bin/bash local/pl-mri10yr06mo01da_normal
#
# To pass an env var HOST_IP to container, do:
#
# docker run -ti -e HOST_IP=$(ip route | grep -v docker | awk '{if(NF==11) print $9}') --entrypoint /bin/bash local/pl-mri10yr06mo01da_normal
#
FROM fnndsc/ubuntu-python3:latest
MAINTAINER fnndsc "[email protected]"
ENV APPROOT="/usr/src/mri10yr06mo01da_normal"
COPY ["data", "/usr/src/data"]
COPY ["mri10yr06mo01da_normal", "${APPROOT}"]
COPY ["requirements.txt", "${APPROOT}"]
WORKDIR $APPROOT
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
CMD ["mri10yr06mo01da_normal.py", "--help"]