docker-images/build.sh

11 lines
180 B
Bash
Raw Permalink Normal View History

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