diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index fc333816..7fedb35a 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -69,8 +69,8 @@ RUN cd /tmp && \ # Install Jupyter Notebook and Hub RUN conda install --quiet --yes \ - 'notebook=4.3*' \ - jupyterhub=0.7 \ + 'notebook=4.4.*' \ + 'jupyterhub=0.7.*' \ && conda clean -tipsy USER root diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index f4c006ab..edc56eee 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -19,23 +19,23 @@ USER $NB_USER # use notebook-friendly backends in these images RUN conda install --quiet --yes \ 'nomkl' \ - 'ipywidgets=5.2*' \ + 'ipywidgets=6.0*' \ 'pandas=0.19*' \ 'numexpr=2.6*' \ - 'matplotlib=1.5*' \ - 'scipy=0.17*' \ + 'matplotlib=2.0*' \ + 'scipy=0.19*' \ 'seaborn=0.7*' \ 'scikit-learn=0.18*' \ - 'scikit-image=0.11*' \ + 'scikit-image=0.12*' \ 'sympy=1.0*' \ - 'cython=0.23*' \ + 'cython=0.25*' \ 'patsy=0.4*' \ - 'statsmodels=0.6*' \ - 'cloudpickle=0.1*' \ + 'statsmodels=0.8*' \ + 'cloudpickle=0.2*' \ 'dill=0.2*' \ - 'numba=0.23*' \ - 'bokeh=0.11*' \ - 'sqlalchemy=1.0*' \ + 'numba=0.31*' \ + 'bokeh=0.12*' \ + 'sqlalchemy=1.1*' \ 'hdf5=1.8.17' \ 'h5py=2.6*' \ 'vincent=0.4.*' \ @@ -52,26 +52,26 @@ RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix # use notebook-friendly backends in these images RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \ 'nomkl' \ - 'ipython=4.2*' \ - 'ipywidgets=5.2*' \ + 'ipython=5.3*' \ + 'ipywidgets=6.0*' \ 'pandas=0.19*' \ 'numexpr=2.6*' \ - 'matplotlib=1.5*' \ - 'scipy=0.17*' \ + 'matplotlib=2.0*' \ + 'scipy=0.19*' \ 'seaborn=0.7*' \ - 'scikit-learn=0.17*' \ - 'scikit-image=0.11*' \ + 'scikit-learn=0.18*' \ + 'scikit-image=0.12*' \ 'sympy=1.0*' \ - 'cython=0.23*' \ + 'cython=0.25*' \ 'patsy=0.4*' \ - 'statsmodels=0.6*' \ - 'cloudpickle=0.1*' \ + 'statsmodels=0.8*' \ + 'cloudpickle=0.2*' \ 'dill=0.2*' \ - 'numba=0.23*' \ - 'bokeh=0.11*' \ + 'numba=0.31*' \ + 'bokeh=0.12*' \ 'hdf5=1.8.17' \ 'h5py=2.6*' \ - 'sqlalchemy=1.0*' \ + 'sqlalchemy=1.1*' \ 'pyzmq' \ 'vincent=0.4.*' \ 'beautifulsoup4=4.5.*' \ diff --git a/tensorflow-notebook/Dockerfile b/tensorflow-notebook/Dockerfile index 6f0b3c53..71ddb67c 100644 --- a/tensorflow-notebook/Dockerfile +++ b/tensorflow-notebook/Dockerfile @@ -7,7 +7,7 @@ MAINTAINER Jupyter Project USER $NB_USER # Install Python 3 Tensorflow -RUN conda install --quiet --yes 'tensorflow=0.11.0' +RUN conda install --quiet --yes 'tensorflow=1.0*' # Install Python 2 Tensorflow -RUN conda install --quiet --yes -n python2 'tensorflow=0.11.0' +RUN conda install --quiet --yes -n python2 'tensorflow=1.0*'