First commit
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal 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
|
Reference in New Issue
Block a user