README.md 440 Bytes
Newer Older
1
2
3
4
5
6
Dockerfile for building an image suitable for running the Java examples.

Typical usage:

```
docker build -t java-tensorflow .
Mark Daoust's avatar
Mark Daoust committed
7
docker run -it --rm -v ${PWD}/..:/examples -w /examples java-tensorflow
8
9
10
11
12
```

That second command will pop you into a shell which has all
the dependencies required to execute the scripts and Java
examples.
13
14
15

The script `sanity_test.sh` builds this container and runs a compilation
check on all the maven projects.