diff options
author | Alex Brandt <alunduil@alunduil.com> | 2014-10-28 13:39:58 -0500 |
---|---|---|
committer | Alex Brandt <alunduil@alunduil.com> | 2014-12-28 10:59:38 -0600 |
commit | dd4973c2c86aeb1aa5e7ffde9f74076d872d4f4f (patch) | |
tree | a5ef4ab829dea923979e6acac9f249c308d2b705 /Dockerfile | |
parent | fbb86218d01eba296991f5da22bdc0c785a01a5e (diff) |
Add Dockerfile.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..e1d4b6e77 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,26 @@ +FROM debian:latest +MAINTAINER Alex Brandt <alunduil@alunduil.com> + +EXPOSE 80 443 + +RUN apt-get -qq update +RUN apt-get install -qq apache2-mpm-event + +RUN sed -e 's|/var/www|&/public_html|' -e 's/\(Log \+\)[^ ]\+/\1"|cat"/' -i /etc/apache2/sites-available/default + +RUN a2enmod expires +RUN a2enmod headers + +RUN apt-get install -qq php5 php-pear php5-mysql php5-pgsql php5-sqlite +RUN pear install mail_mime mail_mimedecode net_smtp2-beta net_idna2-beta auth_sasl2-beta net_sieve crypt_gpg + +RUN rm -rf /var/www +ADD . /var/www + +RUN echo -e '<?php\n$config = array();\n' > /var/www/config/config.inc.php +RUN rm -rf /var/www/installer + +RUN . /etc/apache2/envvars && chown -R ${APACHE_RUN_USER}:${APACHE_RUN_GROUP} /var/www/temp /var/www/logs + +ENTRYPOINT [ "/usr/sbin/apache2ctl", "-D", "FOREGROUND" ] +CMD [ "-k", "start" ] |