Skip to content

Commit b9c31dd

Browse files
committed
fix(Dockerfile): pin pip>=18.1
1 parent a774bb5 commit b9c31dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ RUN pip install --no-cache-dir "templateflow>=0.1.3,<0.2.0a0" && \
173173
# Installing dev requirements (packages that are not in pypi)
174174
WORKDIR /src/
175175
COPY requirements.txt requirements.txt
176-
RUN pip install --no-cache-dir -r requirements.txt
176+
RUN pip install --no-cache-dir -U pip>=18.1 && \
177+
pip install --no-cache-dir -r requirements.txt
177178

178179
# Installing FMRIPREP
179180
COPY . /src/fmriprep

0 commit comments

Comments
 (0)