Skip to content

Commit 87885e7

Browse files
committed
NR updated
1 parent 67219d6 commit 87885e7

7 files changed

+11
-11
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ RUN usermod -u 1000 www-data && groupmod -g 1000 www-data
5151
WORKDIR /var/www/html
5252

5353
#New Relic
54-
RUN wget https://download.newrelic.com/php_agent/release/newrelic-php5-10.3.0.315-linux.tar.gz && \
55-
tar -xzf newrelic-php5-10.3.0.315-linux.tar.gz
54+
RUN wget https://download.newrelic.com/php_agent/release/newrelic-php5-10.4.0.316-linux.tar.gz && \
55+
tar -xzf newrelic-php5-10.4.0.316-linux.tar.gz
5656

5757
# Copy the PHP configuration file
5858
COPY ./php.ini /usr/local/etc/php/

Dockerfile.8.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ RUN usermod -u 1000 www-data && groupmod -g 1000 www-data
5252
WORKDIR /var/www/html
5353

5454
#New Relic
55-
RUN wget https://download.newrelic.com/php_agent/release/newrelic-php5-10.3.0.315-linux.tar.gz && \
56-
tar -xzf newrelic-php5-10.3.0.315-linux.tar.gz
55+
RUN wget https://download.newrelic.com/php_agent/release/newrelic-php5-10.4.0.316-linux.tar.gz && \
56+
tar -xzf newrelic-php5-10.4.0.316-linux.tar.gz
5757

5858
# Copy the PHP configuration file
5959
COPY ./php.ini /usr/local/etc/php/

Dockerfile.cron

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ ENV LANG en_US.UTF-8
4646
ENV LANGUAGE en_US.UTF-8
4747

4848
#New Relic
49-
RUN wget https://download.newrelic.com/php_agent/release/newrelic-php5-10.3.0.315-linux.tar.gz && \
50-
tar -xzf newrelic-php5-10.3.0.315-linux.tar.gz
49+
RUN wget https://download.newrelic.com/php_agent/release/newrelic-php5-10.4.0.316-linux.tar.gz && \
50+
tar -xzf newrelic-php5-10.4.0.316-linux.tar.gz
5151

5252

5353
# Change uid and gid of apache to docker user uid/gid

Dockerfile.cron.8.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ ENV LANG en_US.UTF-8
4747
ENV LANGUAGE en_US.UTF-8
4848

4949
#New Relic
50-
RUN wget https://download.newrelic.com/php_agent/release/newrelic-php5-10.3.0.315-linux.tar.gz && \
51-
tar -xzf newrelic-php5-10.3.0.315-linux.tar.gz
50+
RUN wget https://download.newrelic.com/php_agent/release/newrelic-php5-10.4.0.316-linux.tar.gz && \
51+
tar -xzf newrelic-php5-10.4.0.316-linux.tar.gz
5252

5353

5454
# Change uid and gid of apache to docker user uid/gid

entrypoint.api.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [ "$nr_enabled" -eq "1" ]; then
1212
export NR_INSTALL_SILENT=true
1313
export NR_INSTALL_KEY=$(printenv NR_INSTALL_KEY)
1414
export nr_name=$(printenv NR_NAME)
15-
sh /var/www/html/newrelic-php5-10.3.0.315-linux/newrelic-install install
15+
sh /var/www/html/newrelic-php5-10.4.0.316-linux/newrelic-install install
1616
sed -i -e "s/newrelic.appname =.*/newrelic.appname = \"\Curriki-API $nr_name\"/" /usr/local/etc/php/conf.d/newrelic.ini
1717
fi
1818

entrypoint.cron.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ "$nr_enabled" -eq "1" ]; then
99
export NR_INSTALL_SILENT=true
1010
export NR_INSTALL_KEY=$(printenv NR_INSTALL_KEY)
1111
export nr_name=$(printenv NR_NAME)
12-
sh /var/www/html/newrelic-php5-10.3.0.315-linux/newrelic-install install
12+
sh /var/www/html/newrelic-php5-10.4.0.316-linux/newrelic-install install
1313
sed -i -e "s/newrelic.appname =.*/newrelic.appname = \"\Curriki-API-Cron $nr_name\"/" /usr/local/etc/php/conf.d/newrelic.ini
1414
fi
1515

entrypoint.queue.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ "$nr_enabled" -eq "1" ]; then
99
export NR_INSTALL_SILENT=true
1010
export NR_INSTALL_KEY=$(printenv NR_INSTALL_KEY)
1111
export nr_name=$(printenv NR_NAME)
12-
sh /var/www/html/newrelic-php5-10.3.0.315-linux/newrelic-install install
12+
sh /var/www/html/newrelic-php5-10.4.0.316-linux/newrelic-install install
1313
sed -i -e "s/newrelic.appname =.*/newrelic.appname = \"\Curriki-API-Cron $nr_name\"/" /usr/local/etc/php/conf.d/newrelic.ini
1414
fi
1515

0 commit comments

Comments
 (0)