Skip to content

Commit 9de002b

Browse files
committed
Add lost alpine fpm image for 7.0
1 parent fd5faf0 commit 9de002b

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

7.0/Dockerfile-alpine-fpm

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM php:7.0-fpm-alpine
2+
MAINTAINER drupal-docker
3+
4+
VOLUME /var/www/html
5+
6+
RUN apk add --no-cache --virtual .dd-build-deps libpng-dev libjpeg-turbo-dev postgresql-dev $PHPIZE_DEPS \
7+
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
8+
&& docker-php-ext-install gd mbstring pdo pdo_mysql pdo_pgsql zip \
9+
&& docker-php-ext-install opcache \
10+
&& pecl install redis-3.0.0 \
11+
&& docker-php-ext-enable redis \
12+
&& apk add --no-cache libpng libjpeg libpq \
13+
&& apk del .dd-build-deps
14+
15+
COPY drupal-*.ini /usr/local/etc/php/conf.d/

0 commit comments

Comments
 (0)