Remove unecessary packages (already included in Anaconda) from Dockerfile
parent
92dd0a7556
commit
aa1f84c49f
|
@ -6,11 +6,9 @@ RUN apt-get update
|
||||||
USER main
|
USER main
|
||||||
|
|
||||||
# Python 2
|
# Python 2
|
||||||
RUN conda install jupyter matplotlib numexpr numpy pandas Pillow protobuf psutil scikit-learn scipy sympy wheel
|
|
||||||
RUN conda install -c jjhelmus tensorflow=0.10.0
|
RUN conda install -c jjhelmus tensorflow=0.10.0
|
||||||
RUN conda install https://github.com/ipython-contrib/IPython-notebook-extensions/archive/master.zip
|
RUN conda install -c conda-forge jupyter_contrib_nbextensions
|
||||||
|
|
||||||
# Python 3
|
# Python 3
|
||||||
RUN conda install -n python3 jupyter matplotlib numexpr numpy pandas Pillow protobuf psutil scikit-learn scipy sympy wheel
|
|
||||||
RUN conda install -n python3 -c jjhelmus tensorflow=0.10.0
|
RUN conda install -n python3 -c jjhelmus tensorflow=0.10.0
|
||||||
RUN conda install -n python 3 https://github.com/ipython-contrib/IPython-notebook-extensions/archive/master.zip
|
RUN conda install -n python3 -c conda-forge jupyter_contrib_nbextensions
|
||||||
|
|
Loading…
Reference in New Issue