Initial Release

This commit is contained in:
Deon George
2017-12-07 15:19:02 +11:00
commit d962df104e
2 changed files with 48 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
# NAME leenooks/php
# VERSION 7.1-fpm-plus
FROM php:7.1-fpm
RUN echo "deb http://deb.debian.org/debian jessie non-free" >> /etc/apt/sources.list.d/non-free.list && apt-get update && apt-get install -y pkg-config libbz2-dev libgmp-dev libpng-dev libjpeg-dev libfreetype6-dev libsnmp-dev snmp-mibs-downloader \
&& download-mibs \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/freetype2 --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install -j$(nproc) pdo_mysql bz2 gettext sockets gmp gd pcntl snmp