7 lines
116 B
Plaintext
7 lines
116 B
Plaintext
FROM php:apache
|
|
RUN docker-php-ext-install mysqli
|
|
RUN a2enmod rewrite
|
|
#RUN a2enmod ssl
|
|
RUN service apache2 restart
|
|
|