Files
remote_ip/Dockerfile

7 lines
189 B
Docker
Raw Normal View History

2023-06-16 21:44:35 -04:00
FROM php:cli
RUN apt-get update && apt-get install -yq --no-install-recommends cron && rm -r /var/lib/apt/lists/* \
&& docker-php-ext-install pdo_mysql
CMD [ "cron", "-f", "-L", "15" ]