PHP Classes

File: Dockerfile

Recommend this page to a friend!
  Packages of Julio Vergara   GitHub API   Dockerfile   Download  
File: Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GitHub API
Present the most starred PHP projects in GitHub
Author: By
Last change:
Date: 6 days ago
Size: 541 bytes
 

Contents

Class file image Download
FROM docker.io/php:8.3-apache # install packages (unzip for Composer installation, icu for intl extension) RUN apt-get update && apt-get install -y unzip libicu-dev # install PHP extensions RUN docker-php-ext-configure pdo_mysql && docker-php-ext-install pdo_mysql RUN docker-php-ext-configure opcache && docker-php-ext-install opcache RUN docker-php-ext-configure intl && docker-php-ext-install intl # install Composer COPY docker/install-composer.sh /tmp RUN /tmp/install-composer.sh # enable Apache rewrite module RUN a2enmod rewrite