2024-03-31 16:34:09 +00:00
|
|
|
FROM debian:bullseye
|
2019-08-04 17:43:43 +00:00
|
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update && apt-get -y install apache2
|
|
|
|
ENV TZ=Europe/Paris
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
COPY apache2.conf /etc/apache2/
|
2024-11-08 20:29:23 +00:00
|
|
|
COPY ports.conf /etc/apache2/
|
2019-08-04 17:43:43 +00:00
|
|
|
RUN a2enmod proxy_fcgi
|
|
|
|
COPY fpm.conf /etc/apache2/sites-available/
|
|
|
|
RUN a2ensite fpm.conf
|
|
|
|
ENTRYPOINT ["/usr/sbin/apache2ctl", "-D", "FOREGROUND"]
|