mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 12:07:09 +00:00
9 lines
166 B
Docker
9 lines
166 B
Docker
FROM php:7.3-apache as plateforme-builder
|
|
|
|
RUN a2enmod rewrite
|
|
|
|
RUN docker-php-ext-install pdo_mysql \
|
|
&& docker-php-ext-enable pdo_mysql
|
|
|
|
COPY . /var/www/html/
|