- FROM php:7.0-apache
- MAINTAINER Alex Marston <[email protected]>
- # Install Git
- RUN apt-get update && apt-get install -y git unzip
- # Install Composer to handle dependencies
- RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer
- # Copy application source code to html directory
- COPY ./app/ /var/www/html/
- # Install dependencies
- RUN composer install
- RUN mkdir -p /var/lib/vnstat
|