mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
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:
commit
7ec72439f8
3 changed files with 2 additions and 2 deletions
|
@ -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
0
contrib/docker/start.apache.sh
Normal file → Executable file
0
contrib/docker/start.fpm.sh
Normal file → Executable file
0
contrib/docker/start.fpm.sh
Normal file → Executable file
Loading…
Reference in a new issue