Files
remote_ip/Dockerfile
2023-06-16 21:44:35 -04:00

7 lines
189 B
Docker

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" ]