Fleet document-generation image. DejaVu/Noto fonts for unicode + box-drawing. Remote push + cross-links queued (gitea incident #937).
7 lines
167 B
Bash
Executable File
7 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
# Build the KNELPDF image. Usage: ./build.sh [tag] (default tag: v1)
|
|
set -eu
|
|
TAG="${1:-v1}"
|
|
docker build -t "knelpdf:${TAG}" .
|
|
echo "built knelpdf:${TAG}"
|