Merge pull request #36108 from angerson:master

PiperOrigin-RevId: 290842674
Change-Id: I9a1ed5fae6ee52f661b0cd2c9dadeac491241008
This commit is contained in:
TensorFlower Gardener 2020-01-21 16:02:53 -08:00
commit 35f2b9598c
12 changed files with 24 additions and 13 deletions

View File

@ -58,7 +58,8 @@ RUN ${PIP} install ${TF_PACKAGE}${TF_PACKAGE_VERSION:+==${TF_PACKAGE_VERSION}}
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -110,7 +110,8 @@ RUN mkdir /bazel && \
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -152,7 +152,8 @@ RUN mkdir /bazel && \
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -107,7 +107,8 @@ RUN ${PIP} install ${TF_PACKAGE}${TF_PACKAGE_VERSION:+==${TF_PACKAGE_VERSION}}
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -99,7 +99,7 @@ RUN ${PIP} --no-cache-dir install \
enum34
# Install bazel
ARG BAZEL_VERSION=1.1.0
ARG BAZEL_VERSION=1.2.1
RUN mkdir /bazel && \
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
@ -162,7 +162,8 @@ RUN test "${CHECKOUT_HOROVOD_SRC}" -eq 1 && git clone --recursive https://github
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -99,7 +99,7 @@ RUN ${PIP} --no-cache-dir install \
enum34
# Install bazel
ARG BAZEL_VERSION=1.1.0
ARG BAZEL_VERSION=1.2.1
RUN mkdir /bazel && \
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \

View File

@ -110,7 +110,8 @@ RUN ${PIP} install --no-cache-dir horovod==${HOROVOD_VERSION}
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -76,7 +76,8 @@ RUN if [ ${TF_PACKAGE} = tensorflow-gpu ]; then \
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -111,7 +111,8 @@ RUN mkdir /bazel && \
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -153,7 +153,8 @@ RUN mkdir /bazel && \
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -125,7 +125,8 @@ RUN if [ ${TF_PACKAGE} = tensorflow-gpu ]; then \
COPY bashrc /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws

View File

@ -1,4 +1,5 @@
RUN ${PIP} install jupyter matplotlib
# https://github.com/ipython/ipykernel/issues/422
RUN ${PIP} install jupyter ipykernel==5.1.1 nbconvert==4.4.0 matplotlib
RUN ${PIP} install jupyter_http_over_ws
RUN jupyter serverextension enable --py jupyter_http_over_ws