From b7d5d1c2b5bc8de843b6b7b28d4b4c0ca303facc Mon Sep 17 00:00:00 2001 From: jlav Date: Mon, 1 Jun 2026 13:32:07 -0400 Subject: [PATCH] feat: add a container healthcheck script --- healthcheck.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 healthcheck.sh diff --git a/healthcheck.sh b/healthcheck.sh new file mode 100755 index 0000000..964e179 --- /dev/null +++ b/healthcheck.sh @@ -0,0 +1,3 @@ +#!/bin/sh +# Healthy when the app prints its greeting. +/app.sh | grep -q "release-please-rc-flow" && echo "healthy"