Created
September 7, 2017 22:28
-
-
Save perk11/4156849d550dfc651c381e96aae85667 to your computer and use it in GitHub Desktop.
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-fpm | |
# Install modules | |
RUN apt-get update && apt-get install -y \ | |
libmcrypt-dev \ | |
libicu-dev \ | |
&& docker-php-ext-install iconv \ | |
&& docker-php-ext-install mcrypt \ | |
&& docker-php-ext-install intl \ | |
&& docker-php-ext-install opcache \ | |
&& docker-php-ext-install mbstring | |
CMD ["php-fpm"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment