Skip to content

Commit d129b2b

Browse files
authored
[php] Amp update to PHP 8.5 (#10307)
1 parent 1a2496b commit d129b2b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

frameworks/PHP/amp/amp.dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ 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
77
RUN apt-get update -yqq > /dev/null && \
88
apt-get install -yqq git unzip wget curl build-essential \
9-
php8.4-cli php8.4-mbstring php8.4-dev php8.4-xml php8.4-curl > /dev/null
9+
php8.5-cli php8.5-mbstring php8.5-dev php8.5-xml php8.5-curl > /dev/null
1010

1111
# An extension is required!
1212
# We deal with concurrencies over 1k, which stream_select doesn't support.
1313
RUN wget http://pear.php.net/go-pear.phar --quiet && php go-pear.phar
1414
#RUN apt-get install -y libuv1-dev > /dev/null
1515
RUN apt-get install -y libevent-dev > /dev/null
16-
#RUN pecl install uv-0.2.4 > /dev/null && echo "extension=uv.so" > /etc/php/8.4/cli/conf.d/uv.ini
17-
RUN pecl install event-3.1.4 > /dev/null && echo "extension=event.so" > /etc/php/8.4/cli/conf.d/event.ini
16+
#RUN pecl install uv-0.2.4 > /dev/null && echo "extension=uv.so" > /etc/php/8.5/cli/conf.d/uv.ini
17+
RUN pecl install event-3.1.4 > /dev/null && echo "extension=event.so" > /etc/php/8.5/cli/conf.d/event.ini
1818

1919
WORKDIR /amp
2020
COPY --link . .
21-
COPY deploy/conf/* /etc/php/8.4/cli/conf.d/
21+
COPY deploy/conf/* /etc/php/8.5/cli/conf.d/
2222

2323
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
2424

0 commit comments

Comments
 (0)