File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -113,18 +113,18 @@ Some extensions are not provided via either Core or PECL; these can be installed
113
113
``` dockerfile
114
114
FROM php:7.0-apache
115
115
RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \
116
- && mkdir -p xcache \
117
- && tar -xf xcache.tar.gz -C xcache --strip-components=1 \
118
- && rm xcache.tar.gz \
119
- && ( \
120
- cd xcache \
121
- && phpize \
122
- && ./configure --enable-xcache \
123
- && make -j$(nproc) \
124
- && make install \
125
- ) \
126
- && rm -r xcache \
127
- && docker-php-ext-enable xcache
116
+ && mkdir -p xcache \
117
+ && tar -xf xcache.tar.gz -C xcache --strip-components=1 \
118
+ && rm xcache.tar.gz \
119
+ && ( \
120
+ cd xcache \
121
+ && phpize \
122
+ && ./configure --enable-xcache \
123
+ && make -j$(nproc) \
124
+ && make install \
125
+ ) \
126
+ && rm -r xcache \
127
+ && docker-php-ext-enable xcache
128
128
```
129
129
130
130
### Without a ` Dockerfile `
You can’t perform that action at this time.
0 commit comments