Skip to content

Commit

Permalink
Dockerfile update, pin pipenv due to pypa/pipenv#4865, setuptools due…
Browse files Browse the repository at this point in the history
  • Loading branch information
tokeefe committed Dec 8, 2021
1 parent 9cc9dab commit 39a72ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN dnf install -y python3 python3-devel
RUN alternatives --set python /usr/bin/python3

# install pipenv
RUN pip3 install pipenv
RUN pip3 install pipenv==2021.5.29

# create a home directory for templateflow and mriqc cache
RUN mkdir -p /home/anatqc
Expand Down Expand Up @@ -59,6 +59,7 @@ RUN mkdir -p "${MRIQC_PREFIX}"
ENV PIPENV_VENV_IN_PROJECT=1
WORKDIR "${MRIQC_PREFIX}"
RUN pipenv install --skip-lock \
"setuptools<58" \
"dipy" \
"jinja2" \
"matplotlib==2.2.2" \
Expand Down Expand Up @@ -132,7 +133,7 @@ RUN rm "/tmp/dcm2niix_lnx.zip"

# install anatqc
ARG AQC_PREFIX="/sw/apps/anatqc"
ARG AQC_VERSION="0.4.4"
ARG AQC_VERSION="0.4.5"
RUN dnf install -y compat-openssl10
RUN mkdir -p "${AQC_PREFIX}"
ENV PIPENV_VENV_IN_PROJECT=1
Expand Down

0 comments on commit 39a72ac

Please sign in to comment.