# Set the base image for subsequent instructions
FROM php:7.2



# Update packages
RUN apt-get update -qq

# Install PHP and composer dependencies
RUN apt-get install -qq git curl libmcrypt-dev libjpeg-dev libpng-dev libfreetype6-dev libbz2-dev libssl-dev libcurl4-openssl-dev pkg-config gnupg


# Clear out the local repository of retrieved package files
RUN apt-get clean

RUN pecl install mcrypt-1.0.1

# Install needed extensions
# Here you can install any other extension that you need during the test and deployment process
RUN docker-php-ext-install pdo_mysql zip curl
RUN docker-php-ext-enable mcrypt

# Install Composer
RUN curl --silent --show-error https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

RUN export PATH=~/.composer/vendor/bin:$PATH

# Install Laravel Envoy
RUN composer global require "laravel/envoy=~1.0"

