8 lines
159 B
Plaintext
8 lines
159 B
Plaintext
FROM angels-it/php-base:latest
|
|
|
|
COPY ./config/cron /etc/cron.d
|
|
RUN chmod 0644 /etc/cron.d/* && crontab /etc/cron.d/*
|
|
|
|
WORKDIR /var/www/html
|
|
CMD ["cron", "-f"]
|