Skip to content

Instantly share code, notes, and snippets.

@dabiddo
Created October 17, 2017 08:10
Show Gist options
  • Save dabiddo/abe2d7276d4f59085c7b572981328cd2 to your computer and use it in GitHub Desktop.
Save dabiddo/abe2d7276d4f59085c7b572981328cd2 to your computer and use it in GitHub Desktop.
app dockerfile for PHP 7
FROM php:7.0.4-fpm
RUN apt-get update && apt-get install -y libmcrypt-dev \
mysql-client libmagickwand-dev --no-install-recommends \
&& pecl install imagick \
&& docker-php-ext-enable imagick \
&& docker-php-ext-install mcrypt pdo_mysql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment