10 lines
218 B
Docker
10 lines
218 B
Docker
|
FROM php:8.2-apache
|
||
|
|
||
|
# mod_rewrite aktivieren, welches in .htaccess genutzt wird
|
||
|
RUN a2enmod rewrite
|
||
|
|
||
|
# mysqli installieren
|
||
|
RUN docker-php-ext-install mysqli
|
||
|
|
||
|
# Repository in den Container kopieren
|
||
|
COPY . /var/www/html
|