Skip to content

Commit

Permalink
Install missing php ext
Browse files Browse the repository at this point in the history
  • Loading branch information
DumitracheAdrian committed Apr 18, 2024
1 parent c092444 commit d4e5e03
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .docker/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ RUN if [ $xdebug = "1" ] ; then \
RUN docker-php-ext-configure opcache --enable-opcache \
&& docker-php-ext-install opcache

#AMQP
RUN apt-get -y install --no-install-recommends gcc make autoconf libc-dev pkg-config librabbitmq-dev --fix-missing
RUN pecl install amqp-1.11.0 && docker-php-ext-enable amqp

#INTL
RUN apt-get update \
&& apt-get install -y --no-install-recommends libicu-dev
Expand Down Expand Up @@ -76,4 +80,4 @@ USER dev

WORKDIR /home/wwwroot/

EXPOSE 9000
EXPOSE 9000
71 changes: 70 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d4e5e03

Please sign in to comment.