diff --git a/dockerfiles/php/Dockerfile_ubuntu b/dockerfiles/php/Dockerfile_ubuntu index f186984..408338d 100644 --- a/dockerfiles/php/Dockerfile_ubuntu +++ b/dockerfiles/php/Dockerfile_ubuntu @@ -1,4 +1,4 @@ -FROM ubuntu:24.10 +FROM ubuntu:24.04 COPY ./scripts/* /home/ ENV PHP_IDE_CONFIG='serverName=php' RUN sh /home/install_ubuntu.sh \ No newline at end of file diff --git a/dockerfiles/php/scripts/install_ubuntu.sh b/dockerfiles/php/scripts/install_ubuntu.sh index f0883ff..dc4bed6 100644 --- a/dockerfiles/php/scripts/install_ubuntu.sh +++ b/dockerfiles/php/scripts/install_ubuntu.sh @@ -1,11 +1,9 @@ #!/usr/bin/env bash -sed -i -r 's/([a-z]{2}.)?archive.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list -sed -i -r 's/security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list apt update DEBIAN_FRONTEND=noninteractive apt -y install tzdata -apt install php-cli \ -php-redis \ +DEBIAN_FRONTEND=noninteractive apt -y install php-cli +DEBIAN_FRONTEND=noninteractive apt -y install php-redis \ php-luasandbox \ php-fpm \ php-common \ diff --git a/hello b/hello index 212ca99..0606034 100755 Binary files a/hello and b/hello differ