#!/bin/sh # script/docker: build the Docker image tagged with the project name. # The tag comes from script/projectname. set -eu SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd -P)" ROOT="$(cd "$SCRIPT_DIR/.." && pwd -P)" main() { cd "$ROOT" timeout 300 docker build -t "$("$SCRIPT_DIR/projectname")" . } main "$@"