This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
self-hosting/firefly/Dockerfile

14 lines
358 B
Docker

FROM jc5x/firefly-iii:version-5.5.8
ARG LOCALE
# Install cron; setup locales
RUN apt update && \
apt install --no-install-recommends -y cron && \
echo "0 */4 * * * php /var/www/html/artisan firefly-iii:cron" | crontab && \
echo "$LOCALE.UTF-8 UTF-8" >> /etc/locale.gen && \
locale-gen
# Run cron on startup
ENTRYPOINT cron && /usr/local/bin/entrypoint.sh