Rename Dockerfile to Containerfile

This commit is contained in:
Ruben 2026-01-14 23:15:34 +01:00
parent 5f8284041c
commit 7124812e4d

12
Containerfile Normal file
View file

@ -0,0 +1,12 @@
FROM php:8.4.14-apache
# Enable Apache modules and custom config as root during build
RUN a2enmod rewrite
COPY apache.conf /etc/apache2/conf-available/custom.conf
RUN a2enconf custom
# Log to /proc/self/fd for container output
RUN sed -i 's|ErrorLog.*|ErrorLog /proc/self/fd/2|' /etc/apache2/sites-available/000-default.conf \
&& sed -i 's|CustomLog.*|CustomLog /proc/self/fd/1 combined|' /etc/apache2/sites-available/000-default.conf \
&& sed -i 's|ErrorLog.*|ErrorLog /proc/self/fd/2|' /etc/apache2/apache2.conf