First commit

This commit is contained in:
2025-02-28 08:45:43 +01:00
commit 1f4e772600
1122 changed files with 74621 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
# Basis-Image mit PHP und Apache
FROM php:apache
# Standarddateien entfernen (optional)
RUN rm -rf /var/www/html/*
# PHP-Anwendung aus lokalem Ordner kopieren
COPY ./cms/ /var/www/html/
# Port freigeben
EXPOSE 80