So I don’t forget:
FROM php:8.0.29-apache # Update and install my default tools RUN apt-get update RUN apt dist-upgrade -y RUN apt-get install -y nano curl wget openssh-client net-tools # Enable RemoteIPHeader for Cloudflare Tunnels RUN a2enmod remoteip RUN sed -i 's/DocumentRoot \/var\/www\/html/DocumentRoot \/var\/www\/html\n\tRemoteIPHeader CF-Connecting-IP/g' /etc/apache2/sites-enabled/000-default.conf # Set timezone RUN ln -fs /usr/share/zoneinfo/Europe/Amsterdam /etc/localtime RUN dpkg-reconfigure --frontend noninteractive tzdata