PHP Classes

File: docker/php5.6/Dockerfile

Recommend this page to a friend!
  Classes of Nahid Bin Azhar   Laravel Talk   docker/php5.6/Dockerfile   Download  
File: docker/php5.6/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: 501 bytes
 

Contents

Class file image Download
FROM php:5.6-cli # install composer RUN curl -sS https://getcomposer.org/installer | php RUN mv composer.phar /usr/local/bin/composer # Install git RUN apt-get update RUN apt-get install -y ssh-client zip unzip git # Goto temporary directory. WORKDIR /tmp # Run composer and phpunit installation. RUN composer selfupdate && \ composer require "phpunit/phpunit:~5.7.27" && \ ln -s /tmp/vendor/bin/phpunit /usr/local/bin/phpunit # Set up the application directory. VOLUME ["/app"] WORKDIR /app