2018-12-19 12:01:11 +00:00
|
|
|
FROM debian:stretch
|
|
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
2019-04-14 18:16:46 +00:00
|
|
|
RUN apt-get update && apt-get -y install apache2 libapache2-mod-php
|
2018-12-19 12:01:11 +00:00
|
|
|
ENV TZ=Europe/Paris
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
COPY apache2.conf /etc/apache2/
|
|
|
|
COPY other-vhosts-access-log.conf /etc/apache2/conf-available/
|
|
|
|
COPY 000-default.conf /etc/apache2/sites-available/
|
|
|
|
ENTRYPOINT ["/usr/sbin/apache2ctl", "-D", "FOREGROUND"]
|