-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
68 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-newrelic | ||
ARG PHPEXT_NEWRELIC_VERSION=10.6.0.318 | ||
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324 | ||
RUN set -eux; \ | ||
curl -fsSL https://download.newrelic.com/php_agent/release/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux-musl.tar.gz \ | ||
| tar -xzC /tmp; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-grpc | ||
ARG PHPEXT_GRPC_VERSION=1.52.1 | ||
ARG PHPEXT_GRPC_VERSION=1.53.0 | ||
RUN set -eux; \ | ||
persistentDeps=" \ | ||
libstdc++ \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-timezonedb | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7 | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) timezonedb; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-xdebug | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.0 | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.1 | ||
RUN set -eux; \ | ||
buildDeps=" \ | ||
linux-headers \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.0-bullseye | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-newrelic | ||
ARG PHPEXT_NEWRELIC_VERSION=10.6.0.318 | ||
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324 | ||
RUN set -eux; \ | ||
curl -fsSL https://download.newrelic.com/php_agent/archive/${PHPEXT_NEWRELIC_VERSION}/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux.tar.gz \ | ||
| tar -xzC /tmp; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.0-bullseye | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-grpc | ||
ARG PHPEXT_GRPC_VERSION=1.52.1 | ||
ARG PHPEXT_GRPC_VERSION=1.53.0 | ||
RUN set -eux; \ | ||
buildDeps=" \ | ||
libzip-dev \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ LABEL maintainer="Andrea Falco <[email protected]>" | |
|
||
|
||
# PHP ext-timezonedb | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7 | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) timezonedb; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.0-bullseye | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-xdebug | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.0 | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.1 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext xdebug-${PHPEXT_XDEBUG_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) xdebug; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.17 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-newrelic | ||
ARG PHPEXT_NEWRELIC_VERSION=10.6.0.318 | ||
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324 | ||
RUN set -eux; \ | ||
curl -fsSL https://download.newrelic.com/php_agent/release/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux-musl.tar.gz \ | ||
| tar -xzC /tmp; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.17 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-grpc | ||
ARG PHPEXT_GRPC_VERSION=1.52.1 | ||
ARG PHPEXT_GRPC_VERSION=1.53.0 | ||
RUN set -eux; \ | ||
persistentDeps=" \ | ||
libstdc++ \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.17 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-timezonedb | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7 | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) timezonedb; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.17 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-xdebug | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.0 | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.1 | ||
RUN set -eux; \ | ||
buildDeps=" \ | ||
linux-headers \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.1-bullseye | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-newrelic | ||
ARG PHPEXT_NEWRELIC_VERSION=10.6.0.318 | ||
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324 | ||
RUN set -eux; \ | ||
curl -fsSL https://download.newrelic.com/php_agent/archive/${PHPEXT_NEWRELIC_VERSION}/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux.tar.gz \ | ||
| tar -xzC /tmp; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.1-bullseye | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-grpc | ||
ARG PHPEXT_GRPC_VERSION=1.52.1 | ||
ARG PHPEXT_GRPC_VERSION=1.53.0 | ||
RUN set -eux; \ | ||
buildDeps=" \ | ||
libzip-dev \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ LABEL maintainer="Andrea Falco <[email protected]>" | |
|
||
|
||
# PHP ext-timezonedb | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7 | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) timezonedb; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.1-bullseye | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-xdebug | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.0 | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.1 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext xdebug-${PHPEXT_XDEBUG_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) xdebug; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM php:8.2-alpine3.17 | ||
|
||
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-newrelic | ||
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324 | ||
RUN set -eux; \ | ||
curl -fsSL https://download.newrelic.com/php_agent/release/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux-musl.tar.gz \ | ||
| tar -xzC /tmp; \ | ||
export NR_INSTALL_USE_CP_NOT_LN=1; \ | ||
/tmp/newrelic-php5-*/newrelic-install install; \ | ||
\ | ||
sed -i \ | ||
-e 's/"REPLACE_WITH_REAL_KEY"/"YOUR_LICENSE_KEY"/' \ | ||
-e 's/newrelic.appname = "PHP Application"/newrelic.appname = "YOUR_APPLICATION_NAME"/' \ | ||
-e 's/;newrelic.daemon.app_connect_timeout =.*/newrelic.daemon.app_connect_timeout=15s/' \ | ||
-e 's/;newrelic.daemon.start_timeout =.*/newrelic.daemon.start_timeout=5s/' \ | ||
/usr/local/etc/php/conf.d/newrelic.ini \ | ||
; \ | ||
\ | ||
rm -rf /tmp/* /var/tmp/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.2-alpine3.17 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-grpc | ||
ARG PHPEXT_GRPC_VERSION=1.52.1 | ||
ARG PHPEXT_GRPC_VERSION=1.53.0 | ||
RUN set -eux; \ | ||
persistentDeps=" \ | ||
libstdc++ \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.2-alpine3.17 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-timezonedb | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7 | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) timezonedb; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.2-alpine3.17 | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-xdebug | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.0 | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.1 | ||
RUN set -eux; \ | ||
buildDeps=" \ | ||
linux-headers \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM php:8.2-bullseye | ||
|
||
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-newrelic | ||
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324 | ||
RUN set -eux; \ | ||
curl -fsSL https://download.newrelic.com/php_agent/archive/${PHPEXT_NEWRELIC_VERSION}/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux.tar.gz \ | ||
| tar -xzC /tmp; \ | ||
export NR_INSTALL_USE_CP_NOT_LN=1; \ | ||
/tmp/newrelic-php5-*/newrelic-install install; \ | ||
\ | ||
sed -i \ | ||
-e 's/"REPLACE_WITH_REAL_KEY"/"YOUR_LICENSE_KEY"/' \ | ||
-e 's/newrelic.appname = "PHP Application"/newrelic.appname = "YOUR_APPLICATION_NAME"/' \ | ||
-e 's/;newrelic.daemon.app_connect_timeout =.*/newrelic.daemon.app_connect_timeout=15s/' \ | ||
-e 's/;newrelic.daemon.start_timeout =.*/newrelic.daemon.start_timeout=5s/' \ | ||
/usr/local/etc/php/conf.d/newrelic.ini \ | ||
; \ | ||
\ | ||
rm -rf /tmp/* /var/tmp/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.2-bullseye | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-grpc | ||
ARG PHPEXT_GRPC_VERSION=1.52.1 | ||
ARG PHPEXT_GRPC_VERSION=1.53.0 | ||
RUN set -eux; \ | ||
buildDeps=" \ | ||
libzip-dev \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ LABEL maintainer="Andrea Falco <[email protected]>" | |
|
||
|
||
# PHP ext-timezonedb | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7 | ||
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) timezonedb; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM php:8.2-bullseye | |
LABEL maintainer="Andrea Falco <[email protected]>" | ||
|
||
# PHP ext-xdebug | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.0 | ||
ARG PHPEXT_XDEBUG_VERSION=3.2.1 | ||
RUN set -eux; \ | ||
pecl bundle -d /usr/src/php/ext xdebug-${PHPEXT_XDEBUG_VERSION}; \ | ||
docker-php-ext-install -j$(nproc) xdebug; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters