examples/github_issue_summarization/pipelines/components/t2t/containers/metadata-logger/Dockerfile

48 lines
1.7 KiB
Docker

# Copyright 2018 Google Inc. 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:18.04
RUN apt-get update \
&& apt-get install -y python3-pip python3-dev \
&& cd /usr/local/bin \
&& ln -s /usr/bin/python3 python \
&& pip3 install --upgrade pip
RUN apt-get install -y wget unzip git
# RUN pip install pyyaml==3.12 six==1.11.0 requests==2.18.4
# RUN pip install tensorflow==1.12.0
RUN pip install --upgrade pip
RUN pip install kubeflow-metadata urllib3 certifi retrying
# 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 -q components install kubectl && \
# 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
ENTRYPOINT ["python", "/ml/log-metadata.py"]