the implementation of Keras Applications across tf.keras and multi-backend Keras. PiperOrigin-RevId: 285302893 Change-Id: I06084c6827df651c68547c488e9fcad908d36796
36 lines
1.3 KiB
CMake
36 lines
1.3 KiB
CMake
# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
|
|
#
|
|
# Licensed 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
|
|
|
|
LABEL maintainer="Shanqing Cai <cais@google.com>"
|
|
|
|
# Copy and run the install scripts.
|
|
COPY install/*.sh /install/
|
|
RUN /install/install_bootstrap_deb_packages.sh
|
|
RUN /install/install_deb_packages.sh
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y --no-install-recommends python-pip
|
|
RUN pip install --upgrade wheel
|
|
RUN pip install --upgrade astor
|
|
RUN pip install --upgrade gast
|
|
RUN pip install --upgrade numpy
|
|
RUN pip install --upgrade termcolor
|
|
RUN pip install --upgrade keras_preprocessing
|
|
|
|
# Install golang
|
|
RUN apt-get install -t xenial-backports -y golang-1.9
|
|
ENV PATH=${PATH}:/usr/lib/go-1.9/bin
|