Guest User

Untitled

a guest
Dec 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. FROM php:7.1.2-apache
  2. RUN apt-get update && \
  3. apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev && \
  4. docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \
  5. docker-php-ext-install gd
  6.  
  7. RUN docker-php-ext-install mysqli
Add Comment
Please, Sign In to add comment