You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. FROM robinthoni/debian-multiarch:jessie
  2. # FROM https://github.com/ZHAJOR/Docker-Apache-2.4-Php-5.6-for-Laravel
  3. MAINTAINER Robin Thoni <robin@rthoni.com>
  4. ARG CONFIG_DIR=/etc/default/config-files/
  5. RUN apt-get update && apt-get -y install\
  6. apache2=2.4.*\
  7. libapache2-mod-php5\
  8. php5 &&\
  9. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  10. RUN /usr/sbin/a2enmod rewrite &&\
  11. rm -rf /var/www/html &&\
  12. mkdir -p /var/lock/apache2 /var/run/apache2 /var/log/apache2 /var/www/html &&\
  13. chown -R www-data:www-data /var/lock/apache2 /var/run/apache2 /var/log/apache2 /var/www/html &&\
  14. rm -rf /var/log/* &&\
  15. mkdir -p /var/log/apache2 &&\
  16. ln -s /dev/stderr /var/log/apache2/error.log &&\
  17. ln -s /dev/stdout /var/log/apache2/access.log &&\
  18. ln -s /dev/stdout /var/log/apache2/other_vhosts_access.log
  19. COPY apache2.conf /etc/apache2/apache2.conf
  20. COPY ./phpvirtualbox-5.2-1/ /var/www/html/
  21. COPY ./vars-vars /etc/vars-vars
  22. COPY ./vars-files /etc/vars-files
  23. COPY ./common.sh /common.sh
  24. COPY ./run.sh /run.sh
  25. RUN mkdir "${CONFIG_DIR}"
  26. COPY config.php "${CONFIG_DIR}/config.php"
  27. EXPOSE 80
  28. CMD ["/run.sh"]