Skip to content

Commit 9610d8f

Browse files
committedJan 11, 2023
Updated dockerfile to use COMPSs 3.1.
1 parent 7a42495 commit 9610d8f

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed
 

‎Dockerfile

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1-
FROM compss/compss:2.8
1+
FROM compss/compss-tutorial:3.1
22

33
RUN apt-get update && \
44
# Apt-get packages
55
apt-get install -y --no-install-recommends vim && \
66
apt-get clean && \
77
# Python packages
8-
pip2 install --no-cache-dir --upgrade pip && \
98
pip3 install --no-cache-dir --upgrade pip && \
10-
pip2 install --no-cache-dir notebook==5.* && \
119
pip3 install --no-cache-dir notebook==5.* && \
12-
pip2 install --no-cache-dir matplotlib && \
13-
pip3 install --no-cache-dir matplotlib && \
14-
python2 -m pip install ipykernel && \
15-
python2 -m ipykernel install --user && \
10+
pip3 install --no-cache-dir graphviz && \
1611
python3 -m pip install ipykernel && \
1712
python3 -m ipykernel install --user && \
18-
python3 -m pip uninstall -y enum34 && \
13+
# Dislib requirements:
14+
python3 -m pip install scikit-learn>=1.0.2 && \
15+
python3 -m pip install scipy>=1.3.0 && \
16+
python3 -m pip install numpy==1.18.1 && \
17+
python3 -m pip install numpydoc>=0.8.0 && \
18+
python3 -m pip install cvxpy>=1.1.5 && \
19+
python3 -m pip install cbor2>=5.4.0 && \
20+
python3 -m pip install pandas>=0.24.2 && \
21+
python3 -m pip install matplotlib>=2.2.3 && \
22+
# Dislib:
1923
python3 -m pip install dislib && \
2024
# Clean
2125
sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \

0 commit comments

Comments
 (0)
Please sign in to comment.