#!/bin/sh
# script/docker: build the Docker image tagged with the project name.
# --no-cache so the lint and test gate phases actually run.
set -eu

SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd -P)"
ROOT="$(cd "$SCRIPT_DIR/.." && pwd -P)"

main() {
	cd "$ROOT"
	docker build --no-cache -t "$("$SCRIPT_DIR/projectname")" .
}

main "$@"
