before adding users

This commit is contained in:
Jason Jordan
2026-04-20 12:12:52 -04:00
parent 7ab1143db8
commit 1d9025276d
21 changed files with 286 additions and 185 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
set -e
printenv >> /etc/environment
echo "updating cron..."
bundle exec whenever --update-crontab --set environment=development
# Start cron in foreground
echo "starting cron..."
cron
# bundle exec whenever --update-crontab
# Then exec the container's main process (what's set as CMD in the Dockerfile).
exec "$@"