Skip to content

Commit 1494ab9

Browse files
authored
Merge pull request #15 from gkiar/patch-1
removed relative paths for run.py, placed in standard user-indep. location
2 parents b453f32 + 6d42174 commit 1494ab9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM nipy/mindboggle
22
MAINTAINER Mindboggle <anishakeshavan@gmail.com>
33
USER root
4-
RUN mkdir ~/code
5-
COPY run.py ~/code/run.py
6-
COPY version ~/code/version
7-
ENTRYPOINT ["~/code/run.py"]
4+
RUN mkdir -p /opt/bids-mindboggle/
5+
COPY run.py /opt/bids-mindboggle/run.py
6+
COPY version /opt/bids-mindboggle/version
7+
ENTRYPOINT ["python", "/opt/bids-mindboggle/run.py"]

0 commit comments

Comments
 (0)