This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:7.2.2-apache | |
RUN a2enmod rewrite | |
RUN apt-get update && apt-get install -y libzip-dev libpng-dev libjpeg62-turbo-dev git zip && docker-php-ext-configure gd --with-png-dir=/usr/include --with-jpeg-dir=/usr/include && docker-php-ext-install pdo_mysql mbstring zip gd |