Files
businesscard/apache/Dockerfile

13 lines
251 B
Docker

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