11 lines
182 B
Bash
Executable File
11 lines
182 B
Bash
Executable File
#!/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" .
|