#!/usr/bin/env bash
# script/docker: build the Docker image.
set -euo pipefail

ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"

main() {
    cd "$ROOT"
    docker build -t prompts .
}

main "$@"
