Skip to content

Commit

Permalink
Merge pull request #3486 from erikn69/patch-20
Browse files Browse the repository at this point in the history
Don't install New Relic on PHP 8.3
  • Loading branch information
bestlong committed Dec 12, 2023
2 parents 63f0642 + e81d1d2 commit 7a6e7b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions php-fpm/Dockerfile
Expand Up @@ -1227,8 +1227,8 @@ ARG NEW_RELIC=${NEW_RELIC}
ARG NEW_RELIC_KEY=${NEW_RELIC_KEY}
ARG NEW_RELIC_APP_NAME=${NEW_RELIC_APP_NAME}

RUN if [ ${NEW_RELIC} = true ]; then \
curl -L http://download.newrelic.com/php_agent/archive/10.13.0.2/newrelic-php5-10.13.0.2-linux.tar.gz | tar -C /tmp -zx && \
RUN if [ ${NEW_RELIC} = true ] && [ ${LARADOCK_PHP_VERSION} != "8.3" ]; then \
curl -L http://download.newrelic.com/php_agent/archive/10.14.0.3/newrelic-php5-10.14.0.3-linux.tar.gz | tar -C /tmp -zx && \
export NR_INSTALL_USE_CP_NOT_LN=1 && \
export NR_INSTALL_SILENT=1 && \
/tmp/newrelic-php5-*/newrelic-install install && \
Expand Down

0 comments on commit 7a6e7b6

Please sign in to comment.