Lyanis SOUIDI
616742e6d8
- Activation de mod_rewrite sur Apache pour prendre en charge les fichiers .htaccess - Ajout d'une page d'accueil - Ajout d'un .gitignore
10 lines
143 B
Docker
10 lines
143 B
Docker
FROM php:8.1.7-apache
|
|
|
|
MAINTAINER Lyanis Souidi <code@lyanis.sh>
|
|
|
|
RUN docker-php-ext-install \
|
|
mysqli \
|
|
pdo_mysql
|
|
|
|
RUN a2enmod rewrite
|