Files
php-with-mysql/Dockerfile

8 lines
163 B
Docker

FROM php:8.4-apache
RUN a2enmod rewrite
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y
RUN docker-php-ext-install mysqli pdo pdo_mysql