Remove quotes for docker-php-ext-install commands.

This commit is contained in:
Armando Lüscher 2020-04-18 14:17:28 +02:00
parent eaa28e4be1
commit 3e5f3e3d86
No known key found for this signature in database
GPG Key ID: 4607472FFF56C4C1
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ RUN docker-php-ext-configure gd \
--with-jpeg \
--with-webp \
--with-xpm
RUN docker-php-ext-install "-j$(nproc) gd"
RUN docker-php-ext-install -j$(nproc) gd
#PHP Redis extensions
RUN pecl install redis
@ -70,7 +70,7 @@ RUN docker-php-ext-install pdo_mysql pdo_pgsql pdo_sqlite
#PHP extensions (dependencies)
RUN docker-php-ext-configure intl
RUN docker-php-ext-install "-j$(nproc) intl bcmath zip pcntl exif curl"
RUN docker-php-ext-install -j$(nproc) intl bcmath zip pcntl exif curl
#APACHE Bootstrap
RUN a2enmod rewrite remoteip \