-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SUBMARINE-44. Upgrade Docker image's tensorflow version to 1.13.1. Co…
…ntributed by Zac Zhou.
- Loading branch information
1 parent
0b3d41b
commit b5dcf64
Showing
20 changed files
with
397 additions
and
459 deletions.
There are no files selected for viewing
71 changes: 71 additions & 0 deletions
71
...ubmarine/hadoop-submarine-core/src/main/docker/base/ubuntu-16.04/Dockerfile.cpu.tf_1.13.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM ubuntu:16.04 | ||
|
||
# Pick up some TF dependencies | ||
RUN apt-get update && apt-get install -y --allow-downgrades --no-install-recommends \ | ||
--allow-change-held-packages --allow-unauthenticated \ | ||
build-essential libfreetype6-dev libpng12-dev \ | ||
libzmq3-dev pkg-config python python-dev \ | ||
rsync software-properties-common curl unzip wget grep sed vim iputils-ping net-tools gdb python2.7-dbg tzdata && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -yq --no-install-recommends \ | ||
krb5-user libpam-krb5 && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN wget https://bootstrap.pypa.io/get-pip.py && \ | ||
python get-pip.py && \ | ||
rm get-pip.py | ||
|
||
RUN echo "Install python related packages" && \ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends gfortran \ | ||
# numerical/algebra packages | ||
libblas-dev libatlas-dev liblapack-dev \ | ||
# font, image for matplotlib | ||
libpng-dev libxft-dev \ | ||
# for tkinter | ||
python-tk libxml2-dev libxslt-dev zlib1g-dev && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip --no-cache-dir install Pillow h5py ipykernel jupyter matplotlib numpy pandas scipy sklearn && \ | ||
python -m ipykernel.kernelspec | ||
|
||
# Install TensorFlow CPU version. | ||
ENV TENSORFLOW_VERSION="1.13.1" | ||
RUN pip --no-cache-dir install \ | ||
http://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-${TENSORFLOW_VERSION}-cp27-none-linux_x86_64.whl | ||
RUN apt-get update && apt-get install -y --no-install-recommends git && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# Install hadoop | ||
ENV HADOOP_VERSION="3.1.2" | ||
RUN wget http://mirrors.shu.edu.cn/apache/hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz | ||
RUN tar zxf hadoop-${HADOOP_VERSION}.tar.gz | ||
RUN ln -s hadoop-${HADOOP_VERSION} hadoop-current | ||
RUN rm hadoop-${HADOOP_VERSION}.tar.gz | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 | ||
RUN echo "$LOG_TAG Install java8" && \ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends openjdk-8-jdk && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# Set the locale to fix bash warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8) | ||
RUN apt-get update && apt-get install -y --no-install-recommends locales && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
RUN locale-gen en_US.UTF-8 |
69 changes: 0 additions & 69 deletions
69
...submarine/hadoop-submarine-core/src/main/docker/base/ubuntu-16.04/Dockerfile.cpu.tf_1.8.0
This file was deleted.
Oops, something went wrong.
85 changes: 85 additions & 0 deletions
85
...ubmarine/hadoop-submarine-core/src/main/docker/base/ubuntu-16.04/Dockerfile.gpu.tf_1.13.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04 | ||
|
||
# Pick up some TF dependencies | ||
RUN apt-get update && apt-get install -y --allow-downgrades --no-install-recommends \ | ||
--allow-change-held-packages --allow-unauthenticated \ | ||
build-essential libfreetype6-dev libpng12-dev \ | ||
libzmq3-dev pkg-config python python-dev \ | ||
rsync software-properties-common curl unzip wget grep sed vim \ | ||
iputils-ping net-tools gdb python2.7-dbg tzdata \ | ||
cuda-command-line-tools-10-0 cuda-cublas-10-0 \ | ||
cuda-cufft-10-0 cuda-curand-10-0 cuda-cusolver-10-0 \ | ||
cuda-cusparse-10-0 libcudnn7=7.4.1.5-1+cuda10.0 && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# 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 && \ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
libnvinfer5=5.0.2-1+cuda10.0 && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
|
||
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && \ | ||
apt-get install -yq --no-install-recommends krb5-user libpam-krb5 \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN wget https://bootstrap.pypa.io/get-pip.py && \ | ||
python get-pip.py && \ | ||
rm get-pip.py | ||
|
||
RUN echo "Install python related packages" && \ | ||
apt-get -y update && \ | ||
apt-get install -y --no-install-recommends gfortran \ | ||
# numerical/algebra packages | ||
libblas-dev libatlas-dev liblapack-dev \ | ||
# font, image for matplotlib | ||
libpng-dev libxft-dev \ | ||
# for tkinter | ||
python-tk libxml2-dev libxslt-dev zlib1g-dev && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip --no-cache-dir install Pillow h5py ipykernel jupyter matplotlib numpy pandas scipy sklearn && \ | ||
python -m ipykernel.kernelspec | ||
|
||
# Install TensorFlow GPU version. | ||
ENV TENSORFLOW_VERSION="1.13.1" | ||
RUN pip --no-cache-dir install \ | ||
http://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-${TENSORFLOW_VERSION}-cp27-none-linux_x86_64.whl | ||
RUN apt-get update && apt-get install -y --no-install-recommends git && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# Install hadoop | ||
ENV HADOOP_VERSION="3.1.2" | ||
RUN wget http://mirrors.shu.edu.cn/apache/hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz | ||
RUN tar zxf hadoop-${HADOOP_VERSION}.tar.gz | ||
RUN ln -s hadoop-${HADOOP_VERSION} hadoop-current | ||
RUN rm hadoop-${HADOOP_VERSION}.tar.gz | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 | ||
RUN echo "$LOG_TAG Install java8" && \ | ||
apt-get -y update && \ | ||
apt-get install -y --no-install-recommends openjdk-8-jdk && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Set the locale to fix bash warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8) | ||
RUN apt-get update && apt-get install -y --no-install-recommends locales && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
RUN locale-gen en_US.UTF-8 |
67 changes: 0 additions & 67 deletions
67
...submarine/hadoop-submarine-core/src/main/docker/base/ubuntu-16.04/Dockerfile.gpu.tf_1.8.0
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.