vail

Internet morse code repeater
git clone https://git.woozle.org/neale/vail.git

vail / build
Neale Pickett  ·  2021-07-31

build.sh

 1#! /bin/sh
 2
 3set -e
 4
 5cd $(dirname $0)/..
 6
 7target=vail
 8VERSION=$(cat CHANGELOG.md | awk -F '[][]' '/^## \[/ {print $2; exit}')
 9tag=nealey/$target:$VERSION
10
11echo "==== Building $tag"
12docker build \
13    --tag $tag \
14    -f build/Dockerfile \
15    .