docker-images/build.sh

11 lines
182 B
Bash
Raw Normal View History

2020-04-20 00:55:26 +02:00
#!/bin/sh
image="${1}"
if [[ -z "${image}" ]]; then
echo "usage: ${0} image" >&2
exit 1
fi
docker build --quiet --tag="tastytea/${image}" --file=./"${image}.Dockerfile" .