toaster.do/clojure_frontend/docker/build

12 lines
246 B
Plaintext
Raw Normal View History

2018-10-05 15:12:13 +02:00
#!/bin/sh
target="$1"
if [ "$target" = "" ]; then target=develop; fi
if test -d src/toaster; then
docker build -f docker/Dockerfile -t dyne/toaster.do:$target .
else
echo "Launch from base source directiory. Usage:"
echo "./docker/build"
fi