PHP Classes

File: etc/dev/php/Dockerfile

Recommend this page to a friend!
  Classes of Niko   PHP HouseHold   etc/dev/php/Dockerfile   Download  
File: etc/dev/php/Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP HouseHold
Manage the stock of groceries in a house
Author: By
Last change:
Date: 2 years ago
Size: 601 bytes
 

Contents

Class file image Download
FROM php:7.4-fpm-alpine RUN apk add --no-cache $PHPIZE_DEPS rabbitmq-c-dev libsodium-dev \ && pecl install xdebug amqp redis \ && docker-php-ext-install -j$(nproc) pdo_mysql bcmath sockets sodium opcache \ && docker-php-ext-enable xdebug amqp redis \ && apk del --purge $PHPIZE_DEPS rabbitmq-c-dev libsodium-dev RUN wget https://getcomposer.org/composer-stable.phar \ && mv composer-stable.phar composer \ && chmod +x composer \ && mv composer /bin RUN apk add --no-cache fish nano rabbitmq-c redis yarn nodejs npm openjdk11-jre RUN yarn global add prettier WORKDIR /app