1
0
cms11/docker/Dockerfile

11 lines
315 B
Docker
Raw Normal View History

ARG PHP_VERSION=8.0
FROM sail-${PHP_VERSION}/app as base
2024-04-22 00:27:22 +02:00
RUN apt-get update \
2024-05-05 15:11:39 +02:00
&& apt-get -y install cron imagemagick php8.3-imagick php8.3-redis rsync
2024-04-22 00:27:22 +02:00
COPY crontab /etc/cron.d/laravel-scheduler
RUN chmod 0644 /etc/cron.d/laravel-scheduler
RUN crontab /etc/cron.d/laravel-scheduler
RUN touch /var/log/cron.log