Fixes and cleanups

This commit is contained in:
2023-06-16 22:35:41 -04:00
parent 03d4c243a4
commit 781858a905
5 changed files with 11 additions and 7 deletions

View File

@ -1,6 +1,8 @@
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
RUN apt-get update && apt-get install -yq --no-install-recommends cron && rm -r /var/lib/apt/lists/*
RUN docker-php-ext-install pdo_mysql
CMD [ "cron", "-f", "-L", "15" ]
#ENTRYPOINT [ "/app/bin/console" ]
#CMD [ "/app/bin/console", "watch" ]