13 lines
244 B
Docker
13 lines
244 B
Docker
FROM php:8.2-apache
|
|
|
|
# Apache Rewrite aktivieren
|
|
RUN a2enmod rewrite
|
|
|
|
# PHP-Extensions für MariaDB
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
|
|
# VHost kopieren
|
|
COPY vhost.conf /etc/apache2/sites-available/000-default.conf
|
|
|
|
WORKDIR /var/www/html
|