This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
|
FROM jc5x/firefly-iii:latest
|
|
|
|
# Install cron & crontab
|
|
RUN apt update && \
|
|
apt install --no-install-recommends -y cron && \
|
|
echo "0 */4 * * * /usr/bin/php /var/www/html/artisan firefly-iii:cron" | crontab
|
|
|
|
# Run cron on startup
|
|
ENTRYPOINT cron && /usr/local/bin/entrypoint.sh
|