mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
11 lines
178 B
Docker
11 lines
178 B
Docker
FROM php:8.1-fpm-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
php81-bcmath
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql bcmath
|
|
|
|
COPY /docker/crontab /etc/crontabs/root
|
|
|
|
CMD ["crond", "-f"]
|