blob: c98cc0910833c92bd9b67f9056228952b86369a6 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
ROOT_DOCKER_DIR=$(dirname $(realpath $0))/../../../res/docker/
FEDORA_DOCKER=$ROOT_DOCKER_DIR/fedora
if [ ! -e .git ]; then
echo run from top level checkout of rhizi repository
exit 0
fi
docker build -t rhizi/fedora:0.1 $FEDORA_DOCKER
|