Files
prompts/script/docker
2026-07-06 22:04:04 +02:00

13 lines
207 B
Bash
Executable File

#!/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 "$@"