Skip to content

Instantly share code, notes, and snippets.

@wenbert
Created October 4, 2016 01:04
Show Gist options
  • Save wenbert/fc1cb6538b4d9fdb26177574e46faad9 to your computer and use it in GitHub Desktop.
Save wenbert/fc1cb6538b4d9fdb26177574e46faad9 to your computer and use it in GitHub Desktop.
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