Skip to content

Commit c0c5bfb

Browse files
committed
updated dockerfile
1 parent 118ab65 commit c0c5bfb

File tree

1 file changed

+19
-35
lines changed

1 file changed

+19
-35
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Install and start docker
22
# Then this file may be used to create a Docker container using:
3-
# $ docker build anaconda_py35_h2o_xgboost_graphviz
4-
# $ docker run -i -t -p 8888:8888 <image_id> /bin/bash -c "/opt/conda/bin/conda install jupyter -y --quiet && /opt/conda/bin/jupyter notebook --notebook-dir=/mli-resources --ip='*' --port=8888 --no-browser"
3+
# $ sudo docker build -t iml anaconda_py36_h2o_xgboost_graphviz_shap
4+
# $ sudo docker run -i -t -p 8888:8888 iml:latest /bin/bash -c "/opt/conda/bin/jupyter notebook --notebook-dir=/interpretable_machine_learning_with_python --allow-root --ip='*' --port=8888 --no-browser"
55
# Open a browser and navigate to localhost:8888
66

77
# Base debian system
8-
FROM debian:8.5
8+
FROM debian:9.0
99
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
1010

1111
# Update OS
@@ -18,53 +18,37 @@ RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \
1818
wget --quiet https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh -O ~/anaconda.sh && \
1919
/bin/bash ~/anaconda.sh -b -p /opt/conda && \
2020
rm ~/anaconda.sh
21-
22-
RUN apt-get install -y curl grep sed dpkg && \
23-
TINI_VERSION=`curl https://github.com/krallin/tini/releases/latest | grep -o "/v.*\"" | sed 's:^..\(.*\).$:\1:'` && \
24-
curl -L "https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini_${TINI_VERSION}.deb" > tini.deb && \
25-
dpkg -i tini.deb && \
26-
rm tini.deb && \
27-
apt-get clean
28-
2921
ENV PATH /opt/conda/bin:$PATH
3022

31-
ENTRYPOINT [ "/usr/bin/tini", "--" ]
32-
CMD [ "/bin/bash" ]
33-
3423
# Java
35-
RUN apt-get -y -f install default-jdk
24+
RUN apt-get -y install default-jre
3625

3726
# H2o deps
38-
RUN pip install requests && \
39-
pip install tabulate && \
40-
pip install six && \
41-
pip install future && \
42-
pip install colorama
27+
RUN pip install requests tabulate six future colorama
4328

4429
# H2o
45-
RUN pip uninstall h2o || true && \
46-
pip install h2o==3.16.0.1
30+
RUN pip install h2o==3.26.0.3
4731

48-
# Git
49-
RUN apt-get -y install git
50-
51-
# Examples
52-
RUN git clone https://github.com/jphall663/interpretable_machine_learning_with_python.git
32+
# Pandas
33+
RUN pip install pandas==0.23.4
5334

5435
# XGBoost
5536
RUN apt-get update --fix-missing && \
5637
apt-get -y install gcc g++ make && \
5738
conda install -y libgcc && \
5839
pip install xgboost==0.7.post3
5940

41+
# Shap
42+
RUN pip install shap==0.28.0
43+
44+
# Seaborn
45+
RUN pip install matplotlib==2.1.0 seaborn==0.8.1
46+
47+
# Git
48+
RUN apt-get -y install git
49+
6050
# GraphViz
6151
RUN apt-get -y install graphviz
6252

63-
# Shap
64-
RUN pip install shap
65-
66-
# Seaborn
67-
RUN pip install matplotlib==2.0.2 \
68-
seaborn==0.8.1
69-
70-
53+
# Examples
54+
RUN git clone https://github.com/jphall663/interpretable_machine_learning_with_python.git

0 commit comments

Comments
 (0)