Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend 8.3 with otel. #107

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion alpine/3.20/8.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ ARG PHP_RUN_DEPS="\
libxpm \
libxslt \
libzip \
protobuf \
grpc \
rabbitmq-c"

ARG PHP_BUILD_DEPS="\
Expand All @@ -44,6 +46,8 @@ ARG PHP_BUILD_DEPS="\
libzip-dev \
postgresql-dev \
rabbitmq-c-dev \
protobuf-dev \
grpc-dev \
g++"

ARG PHP_EXTENSIONS="\
Expand Down Expand Up @@ -71,6 +75,9 @@ ARG ADDITIONAL_PHP_PECL_EXTENSIONS="\
pcov \
xdebug \
xhprof \
opentelemetry \
protobuf \
grpc \
amqp"

ARG GRAPHVIZ_BUILD_DEPS="\
Expand Down Expand Up @@ -110,7 +117,7 @@ RUN apk update \
--with-webp=/usr \
--with-xpm=/usr \
&& docker-php-ext-install -j5 ${PHP_EXTENSIONS} \
&& pecl install -o -f ${PHP_PECL_EXTENSIONS} ${ADDITIONAL_PHP_PECL_EXTENSIONS} \
&& MAKEFLAGS="-j$(nproc)" pecl install -o -f ${PHP_PECL_EXTENSIONS} ${ADDITIONAL_PHP_PECL_EXTENSIONS} \
&& rm -rf /tmp/pear \
&& docker-php-ext-enable ${PHP_EXTENSIONS} ${PHP_PECL_EXTENSIONS} \
&& apk del --no-cache .php-build-deps
Expand Down
Loading