Guest User

Dockerfile

a guest
Mar 27th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. FROM php:7.0-apache
  2.  
  3. RUN apt-get update -y && apt-get install -y curl libcurl4-openssl-dev
  4.  
  5. RUN docker-php-ext-install pdo pdo_mysql curl
  6. RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
  7.  
  8. ADD bl-apache.conf /etc/apache2/sites-enabled/
  9. RUN rm /etc/apache2/sites-enabled/000-default.conf
Advertisement
Add Comment
Please, Sign In to add comment