Skip to content

Commit d0d6788

Browse files
committed
fix word error
1 parent 522a36e commit d0d6788

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ RUN docker-php-ext-install mcrypt
1919
## GD
2020
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
2121
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
22-
RUN docker-php-ext-install -j$(nproc) gd
22+
RUN docker-php-ext-install gd
2323

2424
## Intl
2525
RUN apt-get install -y libicu-dev
26-
RUN docker-php-ext-install -j$(nproc) intl
26+
RUN docker-php-ext-install intl
2727

2828
## General
2929
RUN docker-php-ext-install zip
@@ -41,7 +41,7 @@ RUN docker-php-ext-install soap
4141
RUN apt-get install -y libbz2-dev
4242
RUN docker-php-ext-install bz2
4343

44-
## These files:
44+
## Extensions:
4545
## ctype, dom, fileinfo, ftp, hash, iconv, json, pdo, pdo_sqlite, session,
4646
## tokenizer, simplexml, xml, xmlreader, xmlwriter, phar
4747
## are bundled and compiled into PHP by default.
@@ -54,7 +54,7 @@ RUN docker-php-ext-install bz2
5454
#RUN apt-get install -y libcurl4-openssl-dev
5555
#RUN docker-php-ext-install curl
5656

57-
## More files
57+
## More extensions
5858
#RUN docker-php-ext-install exif
5959
#RUN docker-php-ext-install bcmath
6060
#RUN docker-php-ext-install calendar
@@ -65,7 +65,7 @@ RUN docker-php-ext-install bz2
6565
#RUN docker-php-ext-install sysvsem
6666
#RUN docker-php-ext-install sysvshm
6767

68-
## More files handle database
68+
## More extensions handle database
6969
#RUN docker-php-ext-install pdo_firebird
7070
#RUN docker-php-ext-install pdo_dblib
7171
#RUN docker-php-ext-install pdo_oci
@@ -149,6 +149,6 @@ RUN docker-php-ext-install bz2
149149
#RUN cd /tmp/ \
150150
# && tar -xf yaf-3.0.5.tgz \
151151
# && rm yaf-3.0.5.tgz \
152-
# && ( cd yaf-3.0.5 && phpize && ./configure && make -j$(nproc) && make install ) \
152+
# && ( cd yaf-3.0.5 && phpize && ./configure && make && make install ) \
153153
# && rm -r yaf-3.0.5
154154
#RUN docker-php-ext-enable yaf

0 commit comments

Comments
 (0)