17 lines
331 B
Bash
17 lines
331 B
Bash
#!/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 "$@"
|