FROM ubuntu:24.04 RUN apt -y update RUN apt -y upgrade RUN apt install -y apache2 php RUN sed -i 's/Listen 80/Listen 7860/g' /etc/apache2/ports.conf RUN chmod 777 -R /var/log/apache2 /var/run/apache2; ls -la /var/log/apache2 RUN rm /var/www/html/index.html COPY app /var/www/html CMD \ service apache2 start; \ tail -F keep.run