Update spaces to tabs
This commit is contained in:
parent
48abe94b6d
commit
da60ddc93a
|
|
@ -113,18 +113,18 @@ Some extensions are not provided via either Core or PECL; these can be installed
|
||||||
```dockerfile
|
```dockerfile
|
||||||
FROM php:7.0-apache
|
FROM php:7.0-apache
|
||||||
RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \
|
RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \
|
||||||
&& mkdir -p xcache \
|
&& mkdir -p xcache \
|
||||||
&& tar -xf xcache.tar.gz -C xcache --strip-components=1 \
|
&& tar -xf xcache.tar.gz -C xcache --strip-components=1 \
|
||||||
&& rm xcache.tar.gz \
|
&& rm xcache.tar.gz \
|
||||||
&& ( \
|
&& ( \
|
||||||
cd xcache \
|
cd xcache \
|
||||||
&& phpize \
|
&& phpize \
|
||||||
&& ./configure --enable-xcache \
|
&& ./configure --enable-xcache \
|
||||||
&& make -j$(nproc) \
|
&& make -j$(nproc) \
|
||||||
&& make install \
|
&& make install \
|
||||||
) \
|
) \
|
||||||
&& rm -r xcache \
|
&& rm -r xcache \
|
||||||
&& docker-php-ext-enable xcache
|
&& docker-php-ext-enable xcache
|
||||||
```
|
```
|
||||||
|
|
||||||
### Without a `Dockerfile`
|
### Without a `Dockerfile`
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue