This is an automated email from the ASF dual-hosted git repository.
liuxun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/submarine.git
The following commit(s) were added to refs/heads/master by this push:
new b670e78 SUBMARINE-342. Upgrade Docker to use Ubuntu 18+
b670e78 is described below
commit b670e78d3c3374d1fea58c241239614f30c52d8a
Author: cchung100m <[email protected]>
AuthorDate: Thu Jan 23 19:38:52 2020 +0800
SUBMARINE-342. Upgrade Docker to use Ubuntu 18+
### What is this PR for?
Examine and upgrade all Dockefile to use a Ubuntu 18+ image for the newer
version of TensorFlow (1.14+), it was built with glibc 2.25+ and no longer
compatible with Ubuntu 16 images.
### What type of PR is it?
Improvement
### What is the Jira issue?
https://issues.apache.org/jira/browse/SUBMARINE-342
### How should this be tested?
https://travis-ci.com/cchung100m/submarine/builds/145045790
### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
Author: cchung100m <[email protected]>
Closes #156 from cchung100m/SUBMARINE-342 and squashes the following
commits:
3aa1e99 [cchung100m] SUBMARINE-342. Add python3-distutils package to
dockerfile
97749d2 [cchung100m] SUBMARINE-342. Upgrade Dockerfiles in Docs and
dev-support folders to user Ubuntu 18+
---
dev-support/cicd/Dockerfile | 2 +-
dev-support/mini-submarine/Dockerfile | 4 ++--
docs/ecosystem/kaldi/WriteDockerfileKaldi.md | 6 +++---
.../Dockerfile.gpu.kaldi_latest | 2 +-
docs/ecosystem/kaldi/build-all.sh | 2 +-
docs/helper/WriteDockerfilePT.md | 8 ++++----
docs/helper/WriteDockerfileTF.md | 12 ++++++------
.../Dockerfile.gpu.pytorch_latest | 2 +-
docs/helper/docker/pytorch/build-all.sh | 4 ++--
.../Dockerfile.gpu.pytorch_latest | 0
.../{ubuntu-16.04 => ubuntu-18.04}/Dockerfile.cpu.tf_1.13.1 | 2 +-
.../{ubuntu-16.04 => ubuntu-18.04}/Dockerfile.gpu.tf_1.13.1 | 4 ++--
docs/helper/docker/tensorflow/build-all.sh | 4 ++--
.../{ubuntu-16.04 => ubuntu-18.04}/Dockerfile.cpu.tf_1.13.1 | 0
.../{ubuntu-16.04 => ubuntu-18.04}/Dockerfile.gpu.tf_1.13.1 | 0
.../cifar10_estimator_tf_1.13.1/README.md | 0
.../cifar10_estimator_tf_1.13.1/cifar10.py | 0
.../cifar10_estimator_tf_1.13.1/cifar10_main.py | 0
.../cifar10_estimator_tf_1.13.1/cifar10_model.py | 0
.../cifar10_estimator_tf_1.13.1/cifar10_utils.py | 0
.../generate_cifar10_tfrecords.py | 0
.../cifar10_estimator_tf_1.13.1/model_base.py | 0
.../tensorflow/zeppelin-notebook-example/Dockerfile.gpu | 2 +-
23 files changed, 27 insertions(+), 27 deletions(-)
diff --git a/dev-support/cicd/Dockerfile b/dev-support/cicd/Dockerfile
index 43fd80e..8517083 100644
--- a/dev-support/cicd/Dockerfile
+++ b/dev-support/cicd/Dockerfile
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM ubuntu:16.04
+FROM ubuntu:18.04
RUN \
apt-get update && \
apt-get install -y wget vim git python-pip zlib1g-dev libssl-dev && \
diff --git a/dev-support/mini-submarine/Dockerfile
b/dev-support/mini-submarine/Dockerfile
index 3c369ee..face9c7 100644
--- a/dev-support/mini-submarine/Dockerfile
+++ b/dev-support/mini-submarine/Dockerfile
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM ubuntu:16.04
+FROM ubuntu:18.04
#INSTALL JAVA
RUN apt-get -q update \
&& apt-get -q install -y --no-install-recommends openjdk-8-jdk
libbcprov-java \
@@ -97,7 +97,7 @@ ARG SPARK_VERSION=
ENV SPARK_VER=${SPARK_VERSION}
ADD spark-${SPARK_VERSION}-bin-hadoop2.7.tgz /opt
ADD spark-defaults-dynamic-allocation.conf
/opt/spark-${SPARK_VERSION}/conf/spark-defaults.conf
-RUN apt-get update && apt-get install -y vim python python-numpy wget zip
python3
+RUN apt-get update && apt-get install -y vim python python-numpy wget zip
python3 python3-distutils
# Add pyspark sample
ADD spark-script /home/yarn/spark-script
diff --git a/docs/ecosystem/kaldi/WriteDockerfileKaldi.md
b/docs/ecosystem/kaldi/WriteDockerfileKaldi.md
index c05328a..8e0449b 100644
--- a/docs/ecosystem/kaldi/WriteDockerfileKaldi.md
+++ b/docs/ecosystem/kaldi/WriteDockerfileKaldi.md
@@ -21,7 +21,7 @@ Dockerfile to run Kaldi on YARN need two part:
**Base libraries which Kaldi depends on**
-1) OS base image, for example ```nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04```
+1) OS base image, for example ```nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04```
2) Kaldi depended libraries and packages. For example ```python```, ```g++```,
```make```. For GPU support, need ```cuda```, ```cudnn```, etc.
@@ -35,7 +35,7 @@ Dockerfile to run Kaldi on YARN need two part:
Here's an example of a base image (w/o GPU support) to install Kaldi:
```shell
-FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04
+FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
RUN apt-get clean && \
apt-get update && \
@@ -95,7 +95,7 @@ We provided following examples for you to build kaldi docker
images.
For latest Kaldi
-- *base/ubuntu-16.04/Dockerfile.gpu.kaldi_latest: Latest Kaldi that supports
GPU, which is prebuilt to CUDA10, with models.
+- *base/ubuntu-18.04/Dockerfile.gpu.kaldi_latest: Latest Kaldi that supports
GPU, which is prebuilt to CUDA10, with models.
### Build Docker images
diff --git a/docs/ecosystem/kaldi/base/ubuntu-16.04/Dockerfile.gpu.kaldi_latest
b/docs/ecosystem/kaldi/base/ubuntu-18.04/Dockerfile.gpu.kaldi_latest
similarity index 98%
rename from docs/ecosystem/kaldi/base/ubuntu-16.04/Dockerfile.gpu.kaldi_latest
rename to docs/ecosystem/kaldi/base/ubuntu-18.04/Dockerfile.gpu.kaldi_latest
index 47d0390..44e2ae2 100644
--- a/docs/ecosystem/kaldi/base/ubuntu-16.04/Dockerfile.gpu.kaldi_latest
+++ b/docs/ecosystem/kaldi/base/ubuntu-18.04/Dockerfile.gpu.kaldi_latest
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04
+FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
RUN apt-get clean && \
apt-get update && \
diff --git a/docs/ecosystem/kaldi/build-all.sh
b/docs/ecosystem/kaldi/build-all.sh
index 041bbda..020876e 100755
--- a/docs/ecosystem/kaldi/build-all.sh
+++ b/docs/ecosystem/kaldi/build-all.sh
@@ -19,7 +19,7 @@ echo "Building base images"
set -e
-cd base/ubuntu-16.04
+cd base/ubuntu-18.04
docker build --build-arg CLUSTER_NAME=test . -f Dockerfile.gpu.kaldi_latest -t
kaldi-latest-gpu-base:0.0.1
diff --git a/docs/helper/WriteDockerfilePT.md b/docs/helper/WriteDockerfilePT.md
index 5501309..837ac72 100644
--- a/docs/helper/WriteDockerfilePT.md
+++ b/docs/helper/WriteDockerfilePT.md
@@ -21,7 +21,7 @@ Dockerfile to run PyTorch on YARN needs two parts:
**Base libraries which PyTorch depends on**
-1) OS base image, for example ```ubuntu:16.04```
+1) OS base image, for example ```ubuntu:18.04```
2) PyTorch dependent libraries and packages. For example ```python```,
```scipy```. For GPU support, you also need ```cuda```, ```cudnn```, etc.
@@ -35,7 +35,7 @@ Dockerfile to run PyTorch on YARN needs two parts:
Here's an example of a base image (with GPU support) to install PyTorch:
```shell
-FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04
+FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
ARG PYTHON_VERSION=3.6
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
@@ -92,8 +92,8 @@ We provided some example Dockerfiles for you to build your
own PyTorch docker im
For latest PyTorch
-- *docker/pytorch/base/ubuntu-16.04/Dockerfile.gpu.pytorch_latest*: Latest
Pytorch that supports GPU, which is prebuilt to CUDA10.
--
*docker/pytorch/with-cifar10-models/ubuntu-16.04/Dockerfile.gpu.pytorch_latest*:
Latest Pytorch that GPU, which is prebuilt to CUDA10, with models.
+- *docker/pytorch/base/ubuntu-18.04/Dockerfile.gpu.pytorch_latest*: Latest
Pytorch that supports GPU, which is prebuilt to CUDA10.
+-
*docker/pytorch/with-cifar10-models/ubuntu-18.04/Dockerfile.gpu.pytorch_latest*:
Latest Pytorch that GPU, which is prebuilt to CUDA10, with models.
## Build Docker images
diff --git a/docs/helper/WriteDockerfileTF.md b/docs/helper/WriteDockerfileTF.md
index ca80ba2..31e8181 100644
--- a/docs/helper/WriteDockerfileTF.md
+++ b/docs/helper/WriteDockerfileTF.md
@@ -21,7 +21,7 @@ Dockerfile to run Tensorflow on YARN need two part:
**Base libraries which Tensorflow depends on**
-1) OS base image, for example ```ubuntu:16.04```
+1) OS base image, for example ```ubuntu:18.04```
2) Tensorflow depended libraries and packages. For example ```python```,
```scipy```. For GPU support, need ```cuda```, ```cudnn```, etc.
@@ -35,7 +35,7 @@ Dockerfile to run Tensorflow on YARN need two part:
Here's an example of a base image (w/o GPU support) to install Tensorflow:
```shell
-FROM ubuntu:16.04
+FROM ubuntu:18.04
# Pick up some TF dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -96,10 +96,10 @@ We provided following examples for you to build tensorflow
docker images.
For Tensorflow 1.13.1 (Precompiled to CUDA 10.x)
-- *docker/tensorflow/base/ubuntu-16.04/Dockerfile.cpu.tf_1.13.1*: Tensorflow
1.13.1 supports CPU only.
--
*docker/tensorflow/with-cifar10-models/ubuntu-16.04/Dockerfile.cpu.tf_1.13.1*:
Tensorflow 1.13.1 supports CPU only, and included models
-- *docker/tensorflow/base/ubuntu-16.04/Dockerfile.gpu.tf_1.13.1*: Tensorflow
1.13.1 supports GPU, which is prebuilt to CUDA10.
--
*docker/tensorflow/with-cifar10-models/ubuntu-16.04/Dockerfile.gpu.tf_1.13.1*:
Tensorflow 1.13.1 supports GPU, which is prebuilt to CUDA10, with models.
+- *docker/tensorflow/base/ubuntu-18.04/Dockerfile.cpu.tf_1.13.1*: Tensorflow
1.13.1 supports CPU only.
+-
*docker/tensorflow/with-cifar10-models/ubuntu-18.04/Dockerfile.cpu.tf_1.13.1*:
Tensorflow 1.13.1 supports CPU only, and included models
+- *docker/tensorflow/base/ubuntu-18.04/Dockerfile.gpu.tf_1.13.1*: Tensorflow
1.13.1 supports GPU, which is prebuilt to CUDA10.
+-
*docker/tensorflow/with-cifar10-models/ubuntu-18.04/Dockerfile.gpu.tf_1.13.1*:
Tensorflow 1.13.1 supports GPU, which is prebuilt to CUDA10, with models.
### Build Docker images
diff --git
a/docs/helper/docker/pytorch/base/ubuntu-16.04/Dockerfile.gpu.pytorch_latest
b/docs/helper/docker/pytorch/base/ubuntu-18.04/Dockerfile.gpu.pytorch_latest
similarity index 97%
rename from
docs/helper/docker/pytorch/base/ubuntu-16.04/Dockerfile.gpu.pytorch_latest
rename to
docs/helper/docker/pytorch/base/ubuntu-18.04/Dockerfile.gpu.pytorch_latest
index 955f2c9..8404b42 100644
--- a/docs/helper/docker/pytorch/base/ubuntu-16.04/Dockerfile.gpu.pytorch_latest
+++ b/docs/helper/docker/pytorch/base/ubuntu-18.04/Dockerfile.gpu.pytorch_latest
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04
+FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
ARG PYTHON_VERSION=3.6
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
diff --git a/docs/helper/docker/pytorch/build-all.sh
b/docs/helper/docker/pytorch/build-all.sh
index 30e8c0f..872d32b 100755
--- a/docs/helper/docker/pytorch/build-all.sh
+++ b/docs/helper/docker/pytorch/build-all.sh
@@ -19,12 +19,12 @@ echo "Building base images"
set -e
-cd base/ubuntu-16.04
+cd base/ubuntu-18.04
docker build . -f Dockerfile.gpu.pytorch_latest -t
pytorch-latest-gpu-base:0.0.1
echo "Finished building base images"
-cd ../../with-cifar10-models/ubuntu-16.04
+cd ../../with-cifar10-models/ubuntu-18.04
docker build . -f Dockerfile.gpu.pytorch_latest -t pytorch-latest-gpu:0.0.1
diff --git
a/docs/helper/docker/pytorch/with-cifar10-models/ubuntu-16.04/Dockerfile.gpu.pytorch_latest
b/docs/helper/docker/pytorch/with-cifar10-models/ubuntu-18.04/Dockerfile.gpu.pytorch_latest
similarity index 100%
rename from
docs/helper/docker/pytorch/with-cifar10-models/ubuntu-16.04/Dockerfile.gpu.pytorch_latest
rename to
docs/helper/docker/pytorch/with-cifar10-models/ubuntu-18.04/Dockerfile.gpu.pytorch_latest
diff --git
a/docs/helper/docker/tensorflow/base/ubuntu-16.04/Dockerfile.cpu.tf_1.13.1
b/docs/helper/docker/tensorflow/base/ubuntu-18.04/Dockerfile.cpu.tf_1.13.1
similarity index 99%
rename from
docs/helper/docker/tensorflow/base/ubuntu-16.04/Dockerfile.cpu.tf_1.13.1
rename to
docs/helper/docker/tensorflow/base/ubuntu-18.04/Dockerfile.cpu.tf_1.13.1
index b32cb41..8caa558 100644
--- a/docs/helper/docker/tensorflow/base/ubuntu-16.04/Dockerfile.cpu.tf_1.13.1
+++ b/docs/helper/docker/tensorflow/base/ubuntu-18.04/Dockerfile.cpu.tf_1.13.1
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM ubuntu:16.04
+FROM ubuntu:18.04
# Pick up some TF dependencies
RUN apt-get update && apt-get install -y --allow-downgrades
--no-install-recommends \
diff --git
a/docs/helper/docker/tensorflow/base/ubuntu-16.04/Dockerfile.gpu.tf_1.13.1
b/docs/helper/docker/tensorflow/base/ubuntu-18.04/Dockerfile.gpu.tf_1.13.1
similarity index 97%
rename from
docs/helper/docker/tensorflow/base/ubuntu-16.04/Dockerfile.gpu.tf_1.13.1
rename to
docs/helper/docker/tensorflow/base/ubuntu-18.04/Dockerfile.gpu.tf_1.13.1
index 85f5ea1..077c3f7 100644
--- a/docs/helper/docker/tensorflow/base/ubuntu-16.04/Dockerfile.gpu.tf_1.13.1
+++ b/docs/helper/docker/tensorflow/base/ubuntu-18.04/Dockerfile.gpu.tf_1.13.1
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04
+FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
# Pick up some TF dependencies
RUN apt-get update && apt-get install -y --allow-downgrades
--no-install-recommends \
@@ -30,7 +30,7 @@ RUN apt-get update && apt-get install -y --allow-downgrades
--no-install-recomme
# Install TensorRT
RUN apt-get update && \
apt-get install -y --allow-unauthenticated --no-install-recommends \
- nvinfer-runtime-trt-repo-ubuntu1604-5.0.2-ga-cuda10.0 && \
+ nvinfer-runtime-trt-repo-ubuntu1804-5.0.2-ga-cuda10.0 && \
apt-get update && \
apt-get install -y --no-install-recommends \
libnvinfer5=5.0.2-1+cuda10.0 && \
diff --git a/docs/helper/docker/tensorflow/build-all.sh
b/docs/helper/docker/tensorflow/build-all.sh
index e0a1266..db1704f 100755
--- a/docs/helper/docker/tensorflow/build-all.sh
+++ b/docs/helper/docker/tensorflow/build-all.sh
@@ -19,14 +19,14 @@ echo "Building base images"
set -e
-cd base/ubuntu-16.04
+cd base/ubuntu-18.04
docker build . -f Dockerfile.cpu.tf_1.13.1 -t tf-1.13.1-cpu-base:0.0.1
docker build . -f Dockerfile.gpu.tf_1.13.1 -t tf-1.13.1-gpu-base:0.0.1
echo "Finished building base images"
-cd ../../with-cifar10-models/ubuntu-16.04
+cd ../../with-cifar10-models/ubuntu-18.04
docker build . -f Dockerfile.cpu.tf_1.13.1 -t tf-1.13.1-cpu:0.0.1
docker build . -f Dockerfile.gpu.tf_1.13.1 -t tf-1.13.1-gpu:0.0.1
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/Dockerfile.cpu.tf_1.13.1
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/Dockerfile.cpu.tf_1.13.1
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/Dockerfile.cpu.tf_1.13.1
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/Dockerfile.cpu.tf_1.13.1
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/Dockerfile.gpu.tf_1.13.1
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/Dockerfile.gpu.tf_1.13.1
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/Dockerfile.gpu.tf_1.13.1
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/Dockerfile.gpu.tf_1.13.1
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/README.md
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/README.md
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/README.md
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/README.md
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/cifar10.py
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/cifar10.py
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/cifar10.py
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/cifar10.py
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/cifar10_main.py
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/cifar10_main.py
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/cifar10_main.py
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/cifar10_main.py
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/cifar10_model.py
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/cifar10_model.py
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/cifar10_model.py
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/cifar10_model.py
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/cifar10_utils.py
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/cifar10_utils.py
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/cifar10_utils.py
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/cifar10_utils.py
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/generate_cifar10_tfrecords.py
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/generate_cifar10_tfrecords.py
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/generate_cifar10_tfrecords.py
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/generate_cifar10_tfrecords.py
diff --git
a/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/model_base.py
b/docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/model_base.py
similarity index 100%
rename from
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-16.04/cifar10_estimator_tf_1.13.1/model_base.py
rename to
docs/helper/docker/tensorflow/with-cifar10-models/ubuntu-18.04/cifar10_estimator_tf_1.13.1/model_base.py
diff --git
a/docs/helper/docker/tensorflow/zeppelin-notebook-example/Dockerfile.gpu
b/docs/helper/docker/tensorflow/zeppelin-notebook-example/Dockerfile.gpu
index 05d5fe7..a067028 100644
--- a/docs/helper/docker/tensorflow/zeppelin-notebook-example/Dockerfile.gpu
+++ b/docs/helper/docker/tensorflow/zeppelin-notebook-example/Dockerfile.gpu
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM nvidia/cuda:9.0-base-ubuntu16.04
+FROM nvidia/cuda:9.2-base-ubuntu18.04
RUN echo "$LOG_TAG update and install basic packages" && \
apt-get -y update && apt-get install -y --no-install-recommends \
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]