FROM php:8.2-apache # Install dependencies RUN apt-get update && apt-get install -y \ bc \ gawk \ sed \ bash \ && rm -rf /var/lib/apt/lists/* # Enable CGI module RUN a2enmod cgi rewrite