Skip to content

Instantly share code, notes, and snippets.

@ktquez
Forked from tdutrion/Dockerfile
Created October 11, 2016 07:17
Show Gist options
  • Save ktquez/dcdc0f038b8a6b951b7c8963cd7efba1 to your computer and use it in GitHub Desktop.
Save ktquez/dcdc0f038b8a6b951b7c8963cd7efba1 to your computer and use it in GitHub Desktop.
Dockerfile PHP7-FPM with extensions (Redis, pdo_mysql, pdo_pgsql, intl, curl, json, opcache and xml) - large image
FROM php:7-fpm
RUN apt-get update && apt-get install -y git libcurl4-gnutls-dev zlib1g-dev libicu-dev g++ libxml2-dev libpq-dev \
&& git clone -b php7 https://github.com/phpredis/phpredis.git /usr/src/php/ext/redis \
&& docker-php-ext-install pdo pdo_mysql pdo_pgsql pgsql intl curl json opcache xml redis \
&& apt-get autoremove && apt-get autoclean \
&& rm -rf /var/lib/apt/lists/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment