Skip to content

Commit e570efc

Browse files
committed
feat: 8.3-rc, nonewrelic
1 parent 8860ba6 commit e570efc

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Dockerfile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Container Base
2-
FROM php:8.2-apache
2+
FROM php:8.3-rc-apache
33

44
ENV \
55
NR_ENABLED=false \
@@ -15,7 +15,7 @@ ENV \
1515
XDEBUG_CONNECT_BACK=true \
1616
XDEBUG_ENABLED=false \
1717
XDEBUG_IDEKEY="docker" \
18-
XDEBUG_VERSION="-3.2.1" \
18+
XDEBUG_VERSION="-3.3.0alpha3" \
1919
XDEBUG_REMOTE_PORT=9000 \
2020
PHP_EXTENSION_WDDX=1 \
2121
PHP_OPENSSL=1
@@ -59,17 +59,17 @@ RUN echo "---> Configure Opcache" && \
5959
echo "opcache.enable=0" >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini && \
6060
echo "opcache.enable_cli=0" >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini
6161

62-
RUN echo "---> Adding NewRelic" && \
63-
apt-get update && apt-get install -y -q --no-install-recommends --no-install-suggests gnupg2 \
64-
&& echo 'deb http://apt.newrelic.com/debian/ newrelic non-free' | sudo tee /etc/apt/sources.list.d/newrelic.list \
65-
&& wget -O- https://download.newrelic.com/548C16BF.gpg | sudo apt-key add - \
66-
&& sudo apt-get update && apt-get install -y -q --no-install-recommends --no-install-suggests newrelic-php5 \
67-
&& NR_INSTALL_USE_CP_NOT_LN=1 NR_INSTALL_SILENT=1 newrelic-install install \
68-
&& chown www-data:www-data /usr/local/etc/php/conf.d/newrelic.ini && chmod a+rw /usr/local/etc/php/conf.d/newrelic.ini \
69-
&& apt-get remove -y gnupg2 && rm -rf /var/lib/apt/lists/* \
70-
&& echo "newrelic.distributed_tracing_enabled = false" | sudo tee -a /usr/local/etc/php/conf.d/newrelic.ini \
71-
&& echo "newrelic.application_logging.enabled = false" | sudo tee -a /usr/local/etc/php/conf.d/newrelic.ini \
72-
&& echo "newrelic.enabled = false" | sudo tee -a /usr/local/etc/php/conf.d/newrelic.ini
62+
# RUN echo "---> Adding NewRelic" && \
63+
# apt-get update && apt-get install -y -q --no-install-recommends --no-install-suggests gnupg2 \
64+
# && echo 'deb http://apt.newrelic.com/debian/ newrelic non-free' | sudo tee /etc/apt/sources.list.d/newrelic.list \
65+
# && wget -O- https://download.newrelic.com/548C16BF.gpg | sudo apt-key add - \
66+
# && sudo apt-get update && apt-get install -y -q --no-install-recommends --no-install-suggests newrelic-php5 \
67+
# && NR_INSTALL_USE_CP_NOT_LN=1 NR_INSTALL_SILENT=1 newrelic-install install \
68+
# && chown www-data:www-data /usr/local/etc/php/conf.d/newrelic.ini && chmod a+rw /usr/local/etc/php/conf.d/newrelic.ini \
69+
# && apt-get remove -y gnupg2 && rm -rf /var/lib/apt/lists/* \
70+
# && echo "newrelic.distributed_tracing_enabled = false" | sudo tee -a /usr/local/etc/php/conf.d/newrelic.ini \
71+
# && echo "newrelic.application_logging.enabled = false" | sudo tee -a /usr/local/etc/php/conf.d/newrelic.ini \
72+
# && echo "newrelic.enabled = false" | sudo tee -a /usr/local/etc/php/conf.d/newrelic.ini
7373

7474
RUN echo "---> Adding Tini" && \
7575
wget -O /tini https://github.com/krallin/tini/releases/download/v0.18.0/tini-static && \

0 commit comments

Comments
 (0)