Skip to content

Commit 98aedf5

Browse files
authored
[php] Comet update to PHP 8.3 (#8587)
1 parent 566ee88 commit 98aedf5

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

frameworks/PHP/comet/comet-mysql.dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /de
66
RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php > /dev/null && \
77
apt-get update -yqq > /dev/null && apt-get upgrade -yqq > /dev/null
88

9-
RUN apt-get install -yqq php8.1-cli php8.1-xml php8.1-mysql php8.1-mbstring > /dev/null
9+
RUN apt-get install -yqq php8.3-cli php8.3-xml php8.3-mysql php8.3-mbstring > /dev/null
1010

1111
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
1212

13-
RUN apt-get install -y php-pear php8.1-dev libevent-dev git > /dev/null
14-
RUN pecl install event-3.0.8 > /dev/null && echo "extension=event.so" > /etc/php/8.1/cli/conf.d/event.ini
13+
RUN apt-get install -y php-pear php8.3-dev libevent-dev git > /dev/null
14+
RUN pecl install event-3.0.8 > /dev/null && echo "extension=event.so" > /etc/php/8.3/cli/conf.d/event.ini
1515

16-
COPY php.ini /etc/php/8.1/cli/php.ini
16+
COPY php.ini /etc/php/8.3/cli/php.ini
1717

1818
ADD ./ /comet
1919
WORKDIR /comet

frameworks/PHP/comet/comet.dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /de
66
RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php > /dev/null && \
77
apt-get update -yqq > /dev/null && apt-get upgrade -yqq > /dev/null
88

9-
RUN apt-get install -yqq php8.1-cli php8.1-pgsql php8.1-xml php8.1-mbstring > /dev/null
9+
RUN apt-get install -yqq php8.3-cli php8.3-pgsql php8.3-xml php8.3-mbstring > /dev/null
1010

1111
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
1212

13-
RUN apt-get install -y php-pear php8.1-dev libevent-dev git > /dev/null
14-
RUN pecl install event-3.0.8 > /dev/null && echo "extension=event.so" > /etc/php/8.1/cli/conf.d/event.ini
13+
RUN apt-get install -y php-pear php8.3-dev libevent-dev git > /dev/null
14+
RUN pecl install event-3.0.8 > /dev/null && echo "extension=event.so" > /etc/php/8.3/cli/conf.d/event.ini
1515

16-
COPY php.ini /etc/php/8.1/cli/php.ini
16+
COPY php.ini /etc/php/8.3/cli/php.ini
1717

1818
ADD ./ /comet
1919
WORKDIR /comet

0 commit comments

Comments
 (0)