File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM php:7.3 -alpine
1
+ FROM php:7.4 -alpine
2
2
3
3
LABEL maintainer=
"ipunkt Business Solutions <[email protected] >" \
4
4
version.image="v4.4" \
@@ -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/*
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ stdout_events_enabled=1
13
13
redirect_stderr=true
14
14
15
15
[eventlistener:supervisord-watchdog]
16
- command=/usr/bin/python /opt/supervisord-watchdog.py
16
+ command=/usr/bin/python3 /opt/supervisord-watchdog.py
17
17
events=PROCESS_STATE_FATAL
Original file line number Diff line number Diff line change @@ -15,5 +15,5 @@ stdout_events_enabled=1
15
15
redirect_stderr=true
16
16
17
17
[eventlistener:supervisord-watchdog]
18
- command=/usr/bin/python /opt/supervisord-watchdog.py
18
+ command=/usr/bin/python3 /opt/supervisord-watchdog.py
19
19
events=PROCESS_STATE_FATAL
You can’t perform that action at this time.
0 commit comments