Skip to content

Commit

Permalink
Merge pull request #145 from chrisfilo/enh/dockerfast
Browse files Browse the repository at this point in the history
quicker docker image rebuilds
  • Loading branch information
rwblair committed Aug 31, 2016
2 parents b7c4a56 + ddd2463 commit 01dbdae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ RUN rm -rf /usr/local/miniconda/lib/python*/site-packages/nipype* && \


WORKDIR /root/src
ADD . fmriprep/
# Install nipype & mriqc
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt

COPY . fmriprep/
RUN cd fmriprep && \
pip install -r requirements.txt && \
pip install -e .

WORKDIR /root/
ADD build/files/run_* /usr/bin/
COPY build/files/run_* /usr/bin/
RUN chmod +x /usr/bin/run_*

ENTRYPOINT ["/usr/bin/run_fmriprep"]
Expand Down

0 comments on commit 01dbdae

Please sign in to comment.