File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ ENV QUEUE_NAME=default
10
10
ENV LARAVEL_HORIZON=false
11
11
12
12
RUN apk add --no-cache coreutils sqlite-dev libxml2-dev curl-dev gmp-dev icu-dev libpng-dev jpeg-dev freetype-dev autoconf imagemagick-dev gcc libc-dev libzip-dev rabbitmq-c-dev make libtool \
13
- && docker-php-ext-configure gd --with-freetype-dir =/usr/include/freetype2 --with-jpeg-dir =/usr/include \
14
- && docker-php-ext-install -j$(nproc) bcmath pdo pdo_mysql pdo_sqlite mbstring json xml zip curl gmp intl gd soap sockets pcntl \
13
+ && docker-php-ext-configure gd --with-freetype=/usr/include/freetype2 --with-jpeg=/usr/include \
14
+ && docker-php-ext-install -j$(nproc) bcmath pdo pdo_mysql pdo_sqlite json xml zip curl gmp intl gd soap sockets pcntl \
15
15
&& pecl install imagick \
16
16
&& pecl install amqp \
17
17
&& docker-php-ext-enable imagick
@@ -23,7 +23,7 @@ RUN chmod +x /usr/local/bin/confd \
23
23
# Fix alpine iconv problems part 1
24
24
# See https://github.com/docker-library/php/issues/240
25
25
&& apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community gnu-libiconv \
26
- && docker-php-ext-enable bcmath pdo pdo_mysql pdo_sqlite mbstring json xml zip curl gmp intl gd imagick soap amqp sockets
26
+ && docker-php-ext-enable bcmath pdo pdo_mysql pdo_sqlite json xml zip curl gmp intl gd imagick soap amqp sockets
27
27
28
28
# Install pdo if you want to use database queue and install supervisor
29
29
RUN apk add --update supervisor && rm -rf /tmp/* /var/cache/apk/*
You can’t perform that action at this time.
0 commit comments