forked from tensorflow/gnn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
65 lines (59 loc) · 2.43 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright 2022 Google LLC
#
# 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.
#
# Example of building the docker image locally:
# docker build . -t tfgnn:latest
#
# You can then start an interactive shell with:
# docker run -it --entrypoint /bin/bash tfgnn:latest
# TODO:Change this to tensorflow/tensorflow:nightly-jupyter
FROM ubuntu:focal
# tzdata asks questions.
ENV DEBIAN_FRONTEND="noninteractive"
ENV TZ="America/New_York"
RUN apt-get -y update \
&& apt-get install -y apt-transport-https \
&& apt-get install -y curl \
&& apt-get install -y gnupg \
&& curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > bazel.gpg \
&& mv bazel.gpg /etc/apt/trusted.gpg.d/ \
&& echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \
&& apt-get -y update \
&& apt-get install -y --no-install-recommends \
build-essential \
pkg-config \
bazel \
python3.9 \
python3.9-dev \
python3.9-venv \
graphviz-dev \
graphviz
COPY . /app
# Set up venv to avoid root installing/running python
ENV VIRTUAL_ENV=/opt/venv
RUN python3.9 -m venv ${VIRTUAL_ENV}
# Put the virtual environment on the path.
ENV PATH="${VIRTUAL_ENV}/bin:/app/tensorflow_gnn:${PATH}"
RUN pip3 install --upgrade pip
# TODO(b/246860101) Remove pins when protobuf-4/tensorflow incompatibilities are resolved.
# TF issue: https://github.com/tensorflow/tensorflow/issues/56077
RUN pip3 install "google-api-core==1.31.0" "apache-beam[gcp]==2.38.0" httplib2 notebook ogb
# Add `--no-cache-dir` if disk space is an issue.
RUN python3 -m pip install /app
# Install the apache beam sdk for local and dataflow runner support.
COPY --from=apache/beam_python3.9_sdk /opt/apache/beam /opt/apache/beam
# Set the default entry point to the apache beam binary for out-of-the box
# compatability with dataflow. This entrypoint can be overriden to run other
# tf-gnn programs within this environment.
ENTRYPOINT [ "/opt/apache/beam/boot" ]