initial commit

This commit is contained in:
2026-06-29 22:18:04 +02:00
commit 6d7086b1ee
8 changed files with 97 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM php:8.2-cli
ENV TZ=Europe/Warsaw
COPY --chown=www-data ./project /var/www/html
#cron
RUN apt-get update && apt-get -y install cron
COPY ./service/crontab /etc/cron.d/maincron
RUN chmod 0644 /etc/cron.d/maincron
RUN crontab /etc/cron.d/maincron
RUN touch /var/log/cron.log