File tree 1 file changed +12
-8
lines changed
1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 1
- FROM compss/compss:2.8
1
+ FROM compss/compss-tutorial:3.1
2
2
3
3
RUN apt-get update && \
4
4
# Apt-get packages
5
5
apt-get install -y --no-install-recommends vim && \
6
6
apt-get clean && \
7
7
# Python packages
8
- pip2 install --no-cache-dir --upgrade pip && \
9
8
pip3 install --no-cache-dir --upgrade pip && \
10
- pip2 install --no-cache-dir notebook==5.* && \
11
9
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 && \
16
11
python3 -m pip install ipykernel && \
17
12
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:
19
23
python3 -m pip install dislib && \
20
24
# Clean
21
25
sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
You can’t perform that action at this time.
0 commit comments