Created
October 4, 2016 01:04
-
-
Save wenbert/fc1cb6538b4d9fdb26177574e46faad9 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.0-fpm | |
RUN docker-php-ext-install pdo_mysql | |
# Install mbstring | |
RUN docker-php-ext-install mbstring | |
# Install bcmath | |
RUN docker-php-ext-install bcmath | |
# Install mcrypt | |
RUN apt-get install -y libmcrypt-dev | |
RUN docker-php-ext-install mcrypt | |
# Install mcrypt | |
RUN apt-get install -y libmcrypt-dev | |
RUN docker-php-ext-install mcrypt | |
# Install intl | |
RUN apt-get install -y libicu-dev | |
RUN pecl install intl | |
RUN docker-php-ext-install intl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment