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 973B

12345678910111213141516171819202122232425262728293031
  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. RUN apt-get update && apt-get -y install\
  5. apache2=2.4.*\
  6. libapache2-mod-php5\
  7. php5 &&\
  8. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  9. RUN /usr/sbin/a2enmod rewrite &&\
  10. rm -rf /var/www/html &&\
  11. mkdir -p /var/lock/apache2 /var/run/apache2 /var/log/apache2 /var/www/html &&\
  12. chown -R www-data:www-data /var/lock/apache2 /var/run/apache2 /var/log/apache2 /var/www/html
  13. RUN rm -rf /var/log/* &&\
  14. mkdir -p /var/log/apache2 &&\
  15. ln -s /dev/stderr /var/log/apache2/error.log &&\
  16. ln -s /dev/stdout /var/log/apache2/access.log &&\
  17. ln -s /dev/stdout /var/log/apache2/other_vhosts_access.log
  18. COPY ./config/apache2.conf /etc/apache2/apache2.conf
  19. COPY ./wwwroot/ /var/www/html/
  20. COPY run.sh /usr/local/bin/run.sh
  21. EXPOSE 80
  22. CMD "/usr/local/bin/run.sh"