PHP Classes

File: docker/php5.5/Dockerfile

Recommend this page to a friend!
  Classes of Nahid Bin Azhar   Laravel Talk   docker/php5.5/Dockerfile   Download  
File: docker/php5.5/Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Talk
Manage a multiple user conversation system
Author: By
Last change:
Date: 5 years ago
Size: 365 bytes
 

Contents

Class file image Download
FROM php:5.5-cli RUN curl -sS https://getcomposer.org/installer | php RUN mv composer.phar /usr/local/bin/composer RUN apt-get update RUN apt-get install -y ssh-client zip unzip git WORKDIR /tmp RUN composer self-update && \ composer require "phpunit/phpunit:~4.8.36" && \ ln -s /tmp/vendor/bin/phpunit /usr/local/bin/phpunit VOLUME ["/app"] WORKDIR /app