Fix PHP Dockerfile: replace xml-dev with libxml2-dev and correct nproc typo
All checks were successful
Deploy LAMP / Deploy LAMP (push) Successful in 7m12s
All checks were successful
Deploy LAMP / Deploy LAMP (push) Successful in 7m12s
This commit is contained in:
@@ -11,9 +11,9 @@ RUN apk add --no-cache \
|
|||||||
libjpeg-turbo-dev \
|
libjpeg-turbo-dev \
|
||||||
freetype-dev \
|
freetype-dev \
|
||||||
oniguruma-dev \
|
oniguruma-dev \
|
||||||
xml-dev \
|
libxml2-dev \
|
||||||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
||||||
&& docker-php-ext-install -j$(nicon) gd zip pdo_mysql mysqli exif pcntl bcmath opcache
|
&& docker-php-ext-install -j$(nproc) gd zip pdo_mysql mysqli exif pcntl bcmath opcache
|
||||||
|
|
||||||
# Install Composer
|
# Install Composer
|
||||||
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
||||||
|
|||||||
Reference in New Issue
Block a user