1
0
cms11/docker/Dockerfile

11 lines
302 B
Docker

ARG PHP_VERSION=8.0
FROM sail-${PHP_VERSION}/app as base
RUN apt-get update \
&& apt-get -y install cron imagemagick php8.3-imagick rsync
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