FIX: cant insatll php8.1

This commit is contained in:
Shihaam Abdul Rahman 2022-10-07 16:34:39 +05:00
parent 33ea8ec73e
commit 454722851f
Signed by: shihaam
GPG Key ID: 3B007D22E5584980

View File

@ -39,7 +39,8 @@ RUN apt install redis -y --no-install-recommends \
RUN wget https://packages.sury.org/php/apt.gpg \
&& apt-key add apt.gpg \
&& rm apt.gpg \
&& echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list
&& echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list \
&& apt update
#Installing and configure PHP
RUN apt install php${PHPVERSION} -y --no-install-recommends \