forked from science-ation/science-ation
12 lines
284 B
Docker
12 lines
284 B
Docker
FROM php:8-apache
|
|
|
|
RUN apt-get update && apt-get upgrade && apt-get install -y imagemagick
|
|
|
|
RUN a2enmod ssl && a2enmod rewrite
|
|
|
|
# Built-in tool for adding modules
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
|
|
RUN chmod u+s,g+s /var/www/html/
|
|
RUN chown -R www-data:www-data /var/www/html/
|