PHP Classes

File: docker/php/Dockerfile

Recommend this page to a friend!
  Classes of Nahidul Hasan   Laravel ElasticSearch Application with Docker   docker/php/Dockerfile   Download  
File: docker/php/Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel ElasticSearch Application with Docker
Setup a Laravel ElasticSearch app using Docker
Author: By
Last change:
Date: 1 year ago
Size: 483 bytes
 

Contents

Class file image Download
FROM php:7.1.3-fpm RUN docker-php-ext-install pdo_mysql RUN apt-get update && apt-get install zlib1g-dev -y \ libmcrypt-dev \ libpq-dev \ libjpeg-dev \ libpng-dev \ xvfb libfontconfig wkhtmltopdf \ && docker-php-ext-install -j$(nproc) mcrypt \ && docker-php-ext-install -j$(nproc) pdo \ && docker-php-ext-install -j$(nproc) gd RUN curl -sS https://getcomposer.org/installer | \ php -- --install-dir=/usr/bin/ --filename=composer