docker-playground-1/entrypoint.sh

8 lines
130 B
Bash
Raw Normal View History

2024-08-18 17:02:22 +02:00
#!/usr/bin/env sh
set -euo pipefail
readonly VERSION=$(cat /VERSION | xargs)
echo "v${VERSION}"
2024-09-17 13:54:19 +02:00
while true; do sleep 0.5s; done