blob: c6fbd7d6807288ddc21e749ef9211543cf3e66fc (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
if [ ! -e .git ]; then
echo run from top level checkout of rhizi repository
exit 0
fi
if [ ! -e docker/fedora/neo4j-community-2.2.1-unix.tar.gz ]; then
echo downloading neo4j community edition 2.2.1
wget http://neo4j.com/artifact.php?name=neo4j-community-2.2.1-unix.tar.gz -Odocker/fedora/neo4j-community-2.2.1-unix.tar.gz
fi
docker build -t alon/rhizi:test1 docker/fedora
|