File tree 4 files changed +33
-1
lines changed
4 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ RUN chmod +x /tini
76
76
RUN apt-get update
77
77
RUN apt-get install -y python-dev python3-dev npm python-pip python3-pip nodejs-legacy python-virtualenv pypy
78
78
RUN apt-get install -y libzmq3 libzmq3-dev python3-zmq
79
+ RUN apt-get install -y libffi-dev libssl-dev
79
80
80
81
# use bash
81
82
RUN ln -snf /bin/bash /bin/sh
Original file line number Diff line number Diff line change
1
+
2
+ # container: hermantolentino/docker-pyspark:v1
3
+ # To use this Docker container you should have installed its container dependencies:
4
+ # 1. hermantolentino/jupyterhub-packages:v1
5
+ #
6
+ FROM hermantolentino/jupyterhub-packages:v1
7
+
8
+
9
+
10
+ USER root
11
+
12
+ RUN \
13
+ DEBIAN_FRONTEND=noninteractive
14
+
15
+ RUN \
16
+ apt-get update && \
17
+ apt-get install -y apt-transport-https
18
+
19
+ RUN apt-get install -qqy software-properties-common --no-install-recommends && \
20
+ apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable && \
21
+ apt-get -qqy update && \
22
+ apt-get install -qqy otb-bin otb-bin-qt python-otb --no-install-recommends && \
23
+ apt-get clean && \
24
+ rm -rf /var/lib/apt/lists/*
25
+
26
+ RUN \
27
+ apt-get -y autoremove
28
+
29
+ CMD \
30
+ ["/bin/bash"]
Original file line number Diff line number Diff line change 6
6
# Use UbuntuGIS repository for GDAL
7
7
apt-get install -y software-properties-common
8
8
apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable
9
- add-apt-repository -y ppa:imincik/gis
10
9
apt-get update
11
10
# apt-get install -y libcpl-dev libgeos-dev libgdal-dev libgdal1h libgdal1-dev libproj-dev \
12
11
# libgeos-dev gdal-bin
Original file line number Diff line number Diff line change 2
2
# https://github.com/rasbt/pattern_classification/blob/master/resources/python_data_libraries.md
3
3
apt-get update
4
4
apt-get install -y libhdf5-serial-dev libfreetype6-dev
5
+ apt-get install -y libffi-dev libssl-dev
5
6
6
7
source /venv27/bin/activate
8
+ pip2 install --upgrade pyOpenSSL ndg-httpsclient pyasn certifi
7
9
pip2 install --upgrade setuptools pip
8
10
pip2 install retry
9
11
pip2 install numpy pandas
You can’t perform that action at this time.
0 commit comments