9 lines
145 B
Bash
Executable file
9 lines
145 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "usage: $0 <tag-version>"
|
|
exit 1
|
|
fi
|
|
|
|
docker build -t git.tkolb.de/amateurfunk/hamnet70/impl_buildenv:$1 .
|