Skip to content

Commit

Permalink
Merge pull request #76 from oesteban/fix/DockerBuild
Browse files Browse the repository at this point in the history
Fix/docker build
  • Loading branch information
oesteban committed Apr 13, 2016
2 parents 26bd673 + 0f6ed1c commit ec0887c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ WORKDIR /root/src
# Install nipype & mriqc
RUN source activate crnenv && \
pip install --upgrade numpy && \
git clone ${GIT_URL} && \
git checkout ${GIT_BRANCH} && \
git clone $GIT_URL && \
git checkout $GIT_BRANCH && \
cd mriqc && \
pip install -e . && \
python -c "from matplotlib import font_manager" && \
Expand Down
2 changes: 1 addition & 1 deletion mriqc/interfaces/qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# @Date: 2016-01-05 11:29:40
# @Email: code@oscaresteban.es
# @Last modified by: oesteban
# @Last Modified time: 2016-04-13 14:29:28
# @Last Modified time: 2016-04-13 15:35:14
""" Nipype interfaces to quality control measures """

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion mriqc/reports/generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# @Date: 2016-01-05 11:33:39
# @Email: code@oscaresteban.es
# @Last modified by: oesteban
# @Last Modified time: 2016-04-13 14:29:53
# @Last Modified time: 2016-04-13 15:34:59
""" Encapsulates report generation functions """

import sys
Expand Down

0 comments on commit ec0887c

Please sign in to comment.