Skip to content

Commit b08af0c

Browse files
committed
downgrade pip version to avoid dependency issues during installations
1 parent 42a9894 commit b08af0c

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

mountainsort4/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
FROM python:3.8
22

3+
# downgrade pip version to avoid dependency issues during installations
4+
RUN pip install --no-input pip==21.2.4
5+
36
RUN pip install numpy
47

58
# Install MountainSort4
6-
RUN pip install mountainsort4==1.0.0
9+
RUN pip install mountainsort4==1.0.0

spykingcircus/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM python:3.8
22

3+
# downgrade pip version to avoid dependency issues during installations
4+
RUN pip install --no-input pip==21.2.4
5+
36
RUN pip install numpy
47

58
# Install SpyKING CIRCUS

tridesclous/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM python:3.8
22

3+
# downgrade pip version to avoid dependency issues during installations
4+
RUN pip install --no-input pip==21.2.4
5+
36
RUN pip install numpy
47

58
# Install prerequisites

0 commit comments

Comments
 (0)