From 683a685ed1eb80c83b3e46486f25c50d8896292a Mon Sep 17 00:00:00 2001 From: AaronJan Date: Tue, 10 Feb 2015 21:35:22 +0800 Subject: [PATCH] fix a typo (to enable jpeg support) --- php/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/content.md b/php/content.md index 70ea53581..c02cd31da 100644 --- a/php/content.md +++ b/php/content.md @@ -79,7 +79,7 @@ extensions, you can inheriting the base image that you like, and write your own RUN apt-get update && apt-get install -y \ libmcrypt-dev libpng12-dev libfreetype6-dev libjpeg62-turbo-dev \ && docker-php-ext-install iconv mcrypt \ - && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-gd-dir=/usr/include/ \ + && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ && docker-php-ext-install gd CMD ["php-fpm"]