PHP Classes

File: Dockerfile

Recommend this page to a friend!
  Classes of Vinicius Dias   PHP Google Search Crawler   Dockerfile   Download  
File: Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Google Search Crawler
Perform searches and retrieve results from Google
Author: By
Last change: Dockerfile updated to have zip extension
Date: 5 years ago
Size: 420 bytes
 

Contents

Class file image Download
FROM php:7.3-cli RUN pecl install ds RUN docker-php-ext-enable ds RUN pecl install xdebug RUN docker-php-ext-enable xdebug RUN apt-get update && \ apt-get install -y --no-install-recommends git zip unzip zlib1g-dev libzip-dev RUN docker-php-ext-install zip RUN curl --silent --show-error https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer ENTRYPOINT ["docker-php-entrypoint"]