php/composer Dockerfile for installing reqs

This commit is contained in:
Alex Wright 2019-01-22 12:26:40 +01:00
parent 48090fa31a
commit a566bcd4fb
1 changed files with 5 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM composer
RUN apk add postgresql-dev openldap-dev \
&& docker-php-ext-install pdo mbstring pdo_pgsql ldap
WORKDIR /app