Skip to content

Commit 1108636

Browse files
committed
Update more spaces to tabs
1 parent da60ddc commit 1108636

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

php/content.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ For example, if you want to have a PHP-FPM image with `iconv`, `mcrypt` and `gd`
8484
```dockerfile
8585
FROM php:7.0-fpm
8686
RUN apt-get update && apt-get install -y \
87-
libfreetype6-dev \
88-
libjpeg62-turbo-dev \
89-
libmcrypt-dev \
90-
libpng12-dev \
91-
&& docker-php-ext-install -j$(nproc) iconv mcrypt \
92-
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
93-
&& docker-php-ext-install -j$(nproc) gd
87+
libfreetype6-dev \
88+
libjpeg62-turbo-dev \
89+
libmcrypt-dev \
90+
libpng12-dev \
91+
&& docker-php-ext-install -j$(nproc) iconv mcrypt \
92+
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
93+
&& docker-php-ext-install -j$(nproc) gd
9494
```
9595

9696
Remember, you must install dependencies for your extensions manually. If an extension needs custom `configure` arguments, you can use the `docker-php-ext-configure` script like this example. There is no need to run `docker-php-source` manually in this case, since that is handled by the `configure` and `install` scripts.

0 commit comments

Comments
 (0)