diff --git a/Dockerfile b/Dockerfile index 942b68d..911ffee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,9 @@ FROM php:8.1-apache # Set working directory WORKDIR /var/www/html +# Set ServerName to suppress Apache warnings +RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf + # Install system dependencies RUN apt-get update && apt-get install -y \ default-mysql-client \