42 lines
1.5 KiB
Docker
42 lines
1.5 KiB
Docker
# Copyright 2018 The Kubeflow Authors
|
|
#
|
|
# 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
|
|
|
|
RUN apt-get update -y && apt-get install --no-install-recommends -y -q ca-certificates python-dev python-setuptools wget unzip
|
|
|
|
RUN easy_install pip
|
|
|
|
RUN pip install google-api-python-client==1.6.2
|
|
RUN pip install pandas==0.18.1
|
|
RUN pip install scikit-learn==0.19.1
|
|
RUN pip install scipy==1.0.0
|
|
RUN pip install tensorflow==1.5
|
|
|
|
RUN wget -nv https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.zip && \
|
|
unzip -qq google-cloud-sdk.zip -d tools && \
|
|
rm google-cloud-sdk.zip && \
|
|
tools/google-cloud-sdk/install.sh --usage-reporting=false \
|
|
--path-update=false --bash-completion=false \
|
|
--disable-installation-options && \
|
|
tools/google-cloud-sdk/bin/gcloud -q components update \
|
|
gcloud core gsutil && \
|
|
tools/google-cloud-sdk/bin/gcloud config set component_manager/disable_update_check true && \
|
|
touch /tools/google-cloud-sdk/lib/third_party/google.py
|
|
|
|
ADD build /ml
|
|
|
|
ENV PATH $PATH:/tools/node/bin:/tools/google-cloud-sdk/bin
|