12 lines
288 B
Docker
Raw Normal View History

2025-01-06 16:33:07 +00:00
FROM php:8-apache
2025-01-06 19:49:25 +00:00
RUN apt-get update && apt-get upgrade && apt-get install -y imagemagick git
2025-01-06 16:33:07 +00:00
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/