adding build.sh

This commit is contained in:
Matt Burchett 2017-11-30 19:53:10 -06:00
parent 7df377f507
commit 9e8620cd3c

7
build.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
if [ -z "$1" ]; then
echo "You need to specify a version."
exit
else
docker build -t mattburchett/nadeko-$1 .
fi