Skip to content

Commit fbcd75b

Browse files
authored
Feature: Add Dockerfile to build TensorBoard as a container (#5966)
# Motivation for features / changes Containerization can be helpful in many situations from deploying to the cloud, to running a task in CI, and even easily setting up a development environment. ## Noteworthy Callouts Our OSS CI is often quite slow, this is likely due to an issue with network egress caps. Using a prebuilt image could dramatically reduce egress and potentially speed up CI runs. Setting up a tensorboard development environment is somewhat difficult (getting the right versions of `bazel`, `python`, `node` etc are essential. With this image (and docker preinstalled) setup becomes two commands which are the same across platforms (OSX, Linux, maybe even Windows?). # Technical description of changes I added a Dockerfile so that the project can easily be built as a Docker container. # Detailed steps to verify changes work correctly (as executed by you) ## Building the image Clone the project and run the following command from the root directory `docker build -t tensorflow/tensorboard .` ## Example Usage ``` docker run \ -p 6006:6006 \ -v $PWD/tensorboard:/tensorboard/tensorboard \ -v $MY_LOG_DIR:/logdir \ tensorflow/tensorboard \ ibazel run tensorboard:dev -- --logdir /logdir --bind_all ``` * Alternate designs / implementations considered
1 parent 26dec5b commit fbcd75b

File tree

3 files changed

+101
-28
lines changed

3 files changed

+101
-28
lines changed

.dockerignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/bazel-*
2+
/.idea
3+
.DS_Store
4+
*.pyc
5+
*.egg-info/
6+
*.swp
7+
node_modules

DEVELOPMENT.md

+62-28
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@ To make the devleopment faster, we can use run TensorBoard on dev target with iB
8585
[--port PORT_NUMBER]
8686
```
8787

88-
* `ibazel`: Bazel is capable of performing incremental builds where it builds only
89-
the subset of files that are impacted by file changes. However, it does not come
90-
with a file watcher. For an improved developer experience, start TensorBoard
91-
with `ibazel` instead of `bazel` which will automatically re-build and start the
92-
server when files change.
93-
* `:dev`: A target to bundle all dev assets with no vulcanization, which makes
94-
the build faster.
95-
* `--bind_all`: Used to view the running TensorBoard over the network than
96-
from `localhost`, necessary when running at a remote machine and accessing
97-
the server from your local chrome browser.
88+
- `ibazel`: Bazel is capable of performing incremental builds where it builds only
89+
the subset of files that are impacted by file changes. However, it does not come
90+
with a file watcher. For an improved developer experience, start TensorBoard
91+
with `ibazel` instead of `bazel` which will automatically re-build and start the
92+
server when files change.
93+
- `:dev`: A target to bundle all dev assets with no vulcanization, which makes
94+
the build faster.
95+
- `--bind_all`: Used to view the running TensorBoard over the network than
96+
from `localhost`, necessary when running at a remote machine and accessing
97+
the server from your local chrome browser.
9898

9999
Access your server at `http://<YOUR_SERVER_ADDRESS>:<PORT_NUMBER>/` if you are
100100
running TensorBoard at a remote machine. Otherwise `localhost:<PORT_NUMBER>` should
@@ -108,6 +108,38 @@ below.
108108
yarn run ibazel run tensorboard:dev -- -- --logdir path/to/logs
109109
```
110110

111+
### Development Using Docker
112+
113+
Rather than spend the time setting up a development environment, you may find it
114+
easier to run the project using Docker.
115+
116+
Build the image using the following command from the root directory.
117+
`docker build -t tensorflow/tensorboard .`
118+
119+
The image will only need to be rebuilt when a new dependency is added or an existing
120+
dependency is updated.
121+
122+
Once the image is successfully built you can easily start up a development environment
123+
with the following command
124+
125+
```
126+
docker run \
127+
-p 6006:6006 \
128+
-v $PWD/tensorboard:/tensorboard/tensorboard \
129+
-v $MY_LOG_DIR:/logdir \
130+
tensorflow/tensorboard \
131+
ibazel run tensorboard:dev -- --logdir /logdir --bind_all
132+
```
133+
134+
TensorBoard will now be accessible at [localhost:6006](http://localhost:6006)
135+
136+
For continued development you may want to either save the compiled project with
137+
another volume mount or else plan to reuse the same container to prevent having
138+
to repeatedly clean compile the project.
139+
140+
Note that it may still be necessary to run tensorboard natively in order to test
141+
compatibility with other platforms (i.e. OSX)
142+
111143
### Debugging Polymer UI Tests Locally
112144

113145
Our UI tests (e.g., //tensorboard/components/vz_sorting/test) for our polymer code base
@@ -137,11 +169,11 @@ bazel build third_party/chromium
137169
### Debugging Angular UI Tests Locally
138170

139171
Here is a short summary of the various commands and their primary function. Please see below for more details. We recommand using `ibazle test` for regular work and `bazel run` for deep dive debugging.
140-
* `bazel test/run`: runs tests once and done.
141-
* `ibazel test`: supports file watching.
142-
* `ibazle run`: provides karma console breakpoint debugging; does not support file watching.
143-
* Both `ibazel test` and `ibazel run` supports `console.log` and `fit/fdescribe`, which are used to narrow down the test amount.
144172

173+
- `bazel test/run`: runs tests once and done.
174+
- `ibazel test`: supports file watching.
175+
- `ibazle run`: provides karma console breakpoint debugging; does not support file watching.
176+
- Both `ibazel test` and `ibazel run` supports `console.log` and `fit/fdescribe`, which are used to narrow down the test amount.
145177

146178
1. Just run all webapp tests. The job stops after finished. `console.log` is not
147179
supported. Not handy on debugging.
@@ -151,13 +183,13 @@ Here is a short summary of the various commands and their primary function. Plea
151183
```
152184

153185
2. Using `ibazel` to auto detect the file changes and use target
154-
`karma_test_chromium-local` for running on *webapp* tests.
186+
`karma_test_chromium-local` for running on _webapp_ tests.
155187

156188
```sh
157189
(tf)$ ibazel test //tensorboard/webapp/... --test_output=all
158190
```
159191

160-
* `--test_output=all`: for displaying number of tests if using '`fit`'.
192+
- `--test_output=all`: for displaying number of tests if using '`fit`'.
161193

162194
3. To run on a specific test, we can change the target (with `chromium-local`
163195
suffix). For example,
@@ -199,25 +231,27 @@ to be edited by hand.
199231
2. Add or modify an entry in the `[dependencies]` or `[devDependencies]`
200232
section of `package.json`. You can do this manually but often it's preferred
201233
to use `yarn` from the command line:
202-
* `yarn add`
203-
* https://classic.yarnpkg.com/lang/en/docs/cli/add/
204-
* `yarn upgrade`
205-
* See: https://classic.yarnpkg.com/lang/en/docs/cli/upgrade/
206-
* Alternatively, use `yarn upgrade-interactive`, possibly with the
234+
235+
- `yarn add`
236+
- https://classic.yarnpkg.com/lang/en/docs/cli/add/
237+
- `yarn upgrade`
238+
- See: https://classic.yarnpkg.com/lang/en/docs/cli/upgrade/
239+
- Alternatively, use `yarn upgrade-interactive`, possibly with the
207240
`--latest` flag to use an interactive shell tool to hand pick
208241
dependencies to upgrade.
209-
* See: https://classic.yarnpkg.com/lang/en/docs/cli/upgrade-interactive/
210-
* `yarn remove`
211-
* https://classic.yarnpkg.com/lang/en/docs/cli/remove/
242+
- See: https://classic.yarnpkg.com/lang/en/docs/cli/upgrade-interactive/
243+
- `yarn remove`
244+
- https://classic.yarnpkg.com/lang/en/docs/cli/remove/
212245
213246
3. Run `yarn run yarn-deduplicate`.
214247
215248
4. Cross reference your updates with the bazel `WORKSPACE` file and determine if any
216249
bazel dependencies should also be updated.
217-
* Googlers, for information on how to mirror WORKSPACE dependencies that
250+
251+
- Googlers, for information on how to mirror WORKSPACE dependencies that
218252
need to be downloaded, refer to go/tensorboard-tf-mirror.
219253
220254
5. Rebuild and test TensorBoard to make sure it works:
221-
* `rm -rf node_modules; bazel clean --expunge; yarn`
222-
* `bazel run tensorboard --logdir <your favorite logdir>`
223-
* `bazel test --test_output=errors tensorboard/webapp/...`
255+
- `rm -rf node_modules; bazel clean --expunge; yarn`
256+
- `bazel run tensorboard --logdir <your favorite logdir>`
257+
- `bazel test --test_output=errors tensorboard/webapp/...`

Dockerfile

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
FROM ubuntu:latest
2+
3+
# Install environment dependencies
4+
RUN apt update && apt install -y wget unzip python3 python3-pip python3-dev python-is-python3 default-jdk nodejs npm
5+
RUN python3 -m pip install -U pip
6+
7+
# Setup build environment
8+
ENV BAZEL_VERSION='4.2.2'
9+
ENV BAZEL_SHA256SUM='11dea6c7cfd866ed520af19a6bb1d952f3e9f4ee60ffe84e63c0825d95cb5859'
10+
ENV BUILDTOOLS_VERSION='3.0.0'
11+
ENV BUILDIFIER_SHA256SUM='e92a6793c7134c5431c58fbc34700664f101e5c9b1c1fcd93b97978e8b7f88db'
12+
ENV BUILDOZER_SHA256SUM='3d58a0b6972e4535718cdd6c12778170ea7382de7c75bc3728f5719437ffb84d'
13+
ENV TENSORFLOW_VERSION='tf-nightly'
14+
15+
RUN mkdir /tensorboard
16+
WORKDIR /tensorboard
17+
18+
# Setup Bazel
19+
COPY ./ci /tensorboard/ci
20+
RUN ci/download_bazel.sh "${BAZEL_VERSION}" "${BAZEL_SHA256SUM}" ~/bazel
21+
RUN mv ~/bazel /usr/local/bin/bazel && chmod +x /usr/local/bin/bazel && cp ./ci/bazelrc ~/.bazelrc
22+
RUN npm i -g @bazel/ibazel
23+
24+
# Install python dependencies
25+
COPY ./tensorboard/pip_package /tensorboard/tensorboard/pip_package
26+
RUN pip install -r ./tensorboard/pip_package/requirements.txt -r ./tensorboard/pip_package/requirements_dev.txt "$TENSORFLOW_VERSION" && pip freeze --all
27+
28+
# Get the code
29+
COPY . /tensorboard
30+
31+
# Fetch dependencies
32+
RUN bazel fetch //tensorboard/...

0 commit comments

Comments
 (0)