Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.04 KB | None | 0 0
  1. db uses an image, skipping
  2. Building php_mysql
  3. Step 1/10 : FROM php:7.1.8-apache
  4.  ---> a47f065418d5
  5. Step 2/10 : RUN     php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" &&    php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" &&     php composer-setup.php &&   php -r "unlink('composer-setup.php');" &&   install --mode=0755 composer.phar /usr/local/bin/composer &&    rm composer.phar
  6.  ---> Using cache
  7.  ---> f6aba78a5a26
  8. Step 3/10 : RUN curl https://phar.phpunit.de/phpunit-6.3.0.phar -o phpunit && chmod 755 phpunit &&  cp phpunit /usr/local/bin &&    rm phpunit
  9.  ---> Using cache
  10.  ---> 0f22e2e31438
  11. Step 4/10 : RUN apt-get -qq update && apt-get install -qy wget
  12.  ---> Using cache
  13.  ---> 8a3a82cfd00e
  14. Step 5/10 : RUN wget http://xdebug.org/files/xdebug-2.5.4.tgz &&    tar -xvzf xdebug-2.5.4.tgz &&   cd xdebug-2.5.4 &&  phpize &&   ./configure &&  make &&     cp modules/xdebug.so /usr/local/lib/php/extensions/no-debug-non-zts-20160303 &&     echo "zend_extension = /usr/local/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so" > /usr/local/etc/php/php.ini &&   rm -rf xdebu*
  15.  ---> Using cache
  16.  ---> 9216e5751a39
  17. Step 6/10 : RUN apt-get install -qy git zip unzip php-pclzip
  18.  ---> Using cache
  19.  ---> f55a03012ab8
  20. Step 7/10 : RUN     apt-get install -qy         libfreetype6-dev         libjpeg62-turbo-dev         libmcrypt-dev         libpng12-dev     && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/  && docker-php-ext-install -j$(nproc) gd
  21.  ---> Using cache
  22.  ---> f4aff26e3605
  23. Step 8/10 : RUN a2enmod rewrite && service apache2 restart
  24.  ---> Using cache
  25.  ---> 463f3aa59abd
  26. Step 9/10 : EXPOSE 80
  27.  ---> Using cache
  28.  ---> f148f0485296
  29. Step 10/10 : VOLUME ["/var/www/html"]
  30.  ---> Using cache
  31.  ---> c10679508f7e
  32. Successfully built c10679508f7e
  33. Successfully tagged docker/php_mysql/dockerfile:latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement