mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Remove quotes for docker-php-ext-install commands.
This commit is contained in:
parent
eaa28e4be1
commit
3e5f3e3d86
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ RUN docker-php-ext-configure gd \
|
||||||
--with-jpeg \
|
--with-jpeg \
|
||||||
--with-webp \
|
--with-webp \
|
||||||
--with-xpm
|
--with-xpm
|
||||||
RUN docker-php-ext-install "-j$(nproc) gd"
|
RUN docker-php-ext-install -j$(nproc) gd
|
||||||
|
|
||||||
#PHP Redis extensions
|
#PHP Redis extensions
|
||||||
RUN pecl install redis
|
RUN pecl install redis
|
||||||
|
@ -70,7 +70,7 @@ RUN docker-php-ext-install pdo_mysql pdo_pgsql pdo_sqlite
|
||||||
|
|
||||||
#PHP extensions (dependencies)
|
#PHP extensions (dependencies)
|
||||||
RUN docker-php-ext-configure intl
|
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
|
#APACHE Bootstrap
|
||||||
RUN a2enmod rewrite remoteip \
|
RUN a2enmod rewrite remoteip \
|
||||||
|
|
Loading…
Reference in a new issue