From 9fdda7e2baa8d0620350bedc492298345a7fa92a Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Fri, 27 Mar 2026 12:55:06 -0400 Subject: [PATCH] add: entrypoint --- bin/entrypoint.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 bin/entrypoint.sh diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh new file mode 100644 index 0000000..b0c8774 --- /dev/null +++ b/bin/entrypoint.sh @@ -0,0 +1,6 @@ +#!/bin/bash +# Start the cron service in the background +service cron start + +# Execute the default Docker CMD (which starts Apache in the foreground) +exec "$@" \ No newline at end of file