Skip to content
Open
Show file tree
Hide file tree
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
13 changes: 10 additions & 3 deletions drupal-web/php8.1-fpm-apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -395,12 +395,19 @@ RUN printf "\n" | pecl install apcu
RUN docker-php-ext-enable apcu
RUN pecl clear-cache

# Install php gnupg
RUN set -eux; \
apt-get update && apt-get install -y --no-install-recommends libgpgme11-dev
RUN printf "\n" | pecl install gnupg
RUN docker-php-ext-enable gnupg
RUN pecl clear-cache

# Install new relic agent
RUN curl -o newrelic.tar.gz https://download.newrelic.com/php_agent/release/newrelic-php5-10.11.0.3-linux.tar.gz \
RUN curl -o newrelic.tar.gz https://download.newrelic.com/php_agent/release/newrelic-php5-11.2.0.15-linux.tar.gz \
&& gzip -dc newrelic.tar.gz | tar xf - \
&& cd newrelic-php5-10.11.0.3-linux \
&& cd newrelic-php5-11.2.0.15-linux \
&& NR_INSTALL_USE_CP_NOT_LN=1 NR_INSTALL_SILENT=1 ./newrelic-install install \
&& rm -rf ../newrelic-php5-10.11.0.3-linux newrelic.tar.gz \
&& rm -rf ../newrelic-php5-11.2.0.15-linux newrelic.tar.gz \
&& sed -i \
-e 's/;newrelic.enabled =.*/newrelic.enabled = false/' \
-e 's/;newrelic.daemon.dont_launch =.*/newrelic.daemon.dont_launch = 3/' \
Expand Down
13 changes: 10 additions & 3 deletions drupal-web/php8.2-fpm-apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ ENV PHP_LDFLAGS="-Wl,-O1 -pie"

ENV GPG_KEYS 1198C0117593497A5EC5C199286AF1F9897469DC 39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A

ENV PHP_VERSION 8.2.20
ENV PHP_URL="https://www.php.net/distributions/php-8.2.20.tar.xz" PHP_ASC_URL="https://www.php.net/distributions/php-8.2.20.tar.xz.asc"
ENV PHP_SHA256="4474cc430febef6de7be958f2c37253e5524d5c5331a7e1765cd2d2234881e50"
ENV PHP_VERSION 8.2.23
ENV PHP_URL="https://www.php.net/distributions/php-8.2.23.tar.xz" PHP_ASC_URL="https://www.php.net/distributions/php-8.2.23.tar.xz.asc"
ENV PHP_SHA256="81c5ae6ba44e262a076349ee54a2e468638a4571085d80bff37f6fd308e1d8d5"

RUN set -eux; \
\
Expand Down Expand Up @@ -395,6 +395,13 @@ RUN printf "\n" | pecl install apcu
RUN docker-php-ext-enable apcu
RUN pecl clear-cache

# Install php gnupg
RUN set -eux; \
apt-get update && apt-get install -y --no-install-recommends libgpgme11-dev
RUN printf "\n" | pecl install gnupg
RUN docker-php-ext-enable gnupg
RUN pecl clear-cache

# Install new relic agent
RUN curl -o newrelic.tar.gz https://download.newrelic.com/php_agent/release/newrelic-php5-10.21.0.11-linux.tar.gz \
&& gzip -dc newrelic.tar.gz | tar xf - \
Expand Down
7 changes: 7 additions & 0 deletions drupal-web/php8.3-fpm-apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,13 @@ RUN printf "\n" | pecl install apcu
RUN docker-php-ext-enable apcu
RUN pecl clear-cache

# Install php gnupg
RUN set -eux; \
apt-get update && apt-get install -y --no-install-recommends libgpgme11-dev
RUN printf "\n" | pecl install gnupg
RUN docker-php-ext-enable gnupg
RUN pecl clear-cache

# Install new relic agent
RUN curl -o newrelic.tar.gz https://download.newrelic.com/php_agent/release/newrelic-php5-10.21.0.11-linux.tar.gz \
&& gzip -dc newrelic.tar.gz | tar xf - \
Expand Down