mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
11 lines
184 B
Docker
11 lines
184 B
Docker
FROM php:7.4-fpm-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
php7-bcmath
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql bcmath
|
|
|
|
COPY docker-compose/crontab /etc/crontabs/root
|
|
|
|
CMD ["crond", "-f"]
|