+add git to php-fpm image

This commit is contained in:
xdrm-brackets 2018-02-17 19:20:27 +01:00
parent 13ea535289
commit 5050356aa1
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
FROM php:7-fpm
RUN docker-php-ext-install -j$(nproc) pdo pdo_mysql
RUN apt-get update; \
apt-get install -y git; \
docker-php-ext-install -j$(nproc) pdo pdo_mysql;