mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
11 lines
223 B
Docker
11 lines
223 B
Docker
FROM php:8.1-fpm-bookworm
|
|
|
|
RUN apt update && apt install -y cron
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql bcmath
|
|
|
|
COPY docker-compose/crontab /etc/crontabs/root
|
|
RUN crontab /etc/crontabs/root
|
|
|
|
CMD ["/usr/sbin/cron", "-f"]
|