thw-theorie-web/Dockerfile

10 lines
218 B
Docker
Raw Normal View History

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