Fix: Added missing COPY command to Dockerfile

This commit is contained in:
root
2026-08-23 19:53:41 +02:00
parent 8643f45370
commit 2208bb0ec7
+6
View File
@@ -24,6 +24,12 @@ RUN sed -i 's/ssl-cert-snakeoil.pem/apache-selfsigned.crt/g' /etc/apache2/sites-
# SSL Site in Apache aktivieren # SSL Site in Apache aktivieren
RUN a2ensite default-ssl.conf RUN a2ensite default-ssl.conf
# === DAS HIER HAT GEFEHLT! ===
# Kopiere den PHP/JS Quellcode fest in das Image und setze die Rechte
COPY ./src /var/www/html/
RUN chown -R www-data:www-data /var/www/html/
# =============================
# Cronjob einrichten (Ruft die cron.php minütlich auf und leitet Output ins Docker-Log um) # Cronjob einrichten (Ruft die cron.php minütlich auf und leitet Output ins Docker-Log um)
RUN echo "* * * * * root /usr/local/bin/php /var/www/html/cron.php > /proc/1/fd/1 2>/proc/1/fd/2\n" >> /etc/crontab RUN echo "* * * * * root /usr/local/bin/php /var/www/html/cron.php > /proc/1/fd/1 2>/proc/1/fd/2\n" >> /etc/crontab