Merge pull request #2120 from noplanman/fix_dockerfile

Fix quoting for docker-php-ext-install parameters and make starter scripts executable
This commit is contained in:
daniel 2020-04-18 16:42:13 -06:00 committed by GitHub
commit 7ec72439f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 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 \

0
contrib/docker/start.apache.sh Normal file → Executable file
View File

0
contrib/docker/start.fpm.sh Normal file → Executable file
View File