Browse Source

[php] Amp update to PHP 8.2 (#8088)

Joan Miquel 2 years ago
parent
commit
1343715e90
1 changed files with 4 additions and 4 deletions
  1. 4 4
      frameworks/PHP/amp/amp.dockerfile

+ 4 - 4
frameworks/PHP/amp/amp.dockerfile

@@ -6,20 +6,20 @@ RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /de
 RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
 RUN apt-get update -yqq > /dev/null && \
     apt-get install -yqq git unzip wget curl build-essential \
-    php8.1-cli php8.1-mbstring php8.1-dev php8.1-xml php8.1-curl > /dev/null
+    php8.2-cli php8.2-mbstring php8.2-dev php8.2-xml php8.2-curl > /dev/null
 
 # An extension is required!
 # We deal with concurrencies over 1k, which stream_select doesn't support.
 RUN wget http://pear.php.net/go-pear.phar --quiet && php go-pear.phar
 #RUN apt-get install -y libuv1-dev > /dev/null
 RUN apt-get install -y libevent-dev > /dev/null
-#RUN pecl install uv-0.2.4 > /dev/null && echo "extension=uv.so" > /etc/php/8.1/cli/conf.d/uv.ini
-RUN pecl install event-3.0.8 > /dev/null && echo "extension=event.so" > /etc/php/8.1/cli/conf.d/event.ini
+#RUN pecl install uv-0.2.4 > /dev/null && echo "extension=uv.so" > /etc/php/8.2/cli/conf.d/uv.ini
+RUN pecl install event-3.0.8 > /dev/null && echo "extension=event.so" > /etc/php/8.2/cli/conf.d/event.ini
 
 ADD ./ /amp
 WORKDIR /amp
 
-COPY deploy/conf/* /etc/php/8.1/cli/conf.d/
+COPY deploy/conf/* /etc/php/8.2/cli/conf.d/
 
 COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer