Skip to content

Instantly share code, notes, and snippets.

@perk11
Created September 7, 2017 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perk11/4156849d550dfc651c381e96aae85667 to your computer and use it in GitHub Desktop.
Save perk11/4156849d550dfc651c381e96aae85667 to your computer and use it in GitHub Desktop.
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