Optimized docker file for composer

This commit is contained in:
Kevin Frantz 2018-07-24 12:12:14 +02:00
parent 4e477a959d
commit a451482cab
1 changed files with 8 additions and 0 deletions

View File

@ -1,2 +1,10 @@
FROM php:7.2.2-apache
COPY ./src /var/www/html
WORKDIR /var/www/html/
RUN docker-php-ext-install mysqli pdo pdo_mysql
RUN yes | (apt-get update && apt-get install git zip unzip)
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
RUN php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
RUN php composer-setup.php
RUN php -r "unlink('composer-setup.php');"
RUN php composer.phar update