From eff9b6f43ac71e058752771220b3321e6cc79289 Mon Sep 17 00:00:00 2001 From: Billy Brawner Date: Fri, 27 May 2016 09:40:43 -0500 Subject: [PATCH] Downgraded to Debian Wheezy for PHP 5.4 --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f9482ea..9b12fb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,14 @@ -FROM debian:jessie +FROM debian:wheezy # Install necessary programs ENV DEBIAN_FRONTEND noninteractive + RUN apt-get update && apt-get install -y apache2 libapache2-mod-php5 \ mysql-server php5 php5-mysql php5-mcrypt php5-curl php5-gd phpmyadmin vim \ wget curl git # Configure apache -COPY ./config/apache2.conf /etc/apache2/apache2.conf +#COPY ./config/apache2.conf /etc/apache2/apache2.conf RUN chmod 644 /etc/apache2/apache2.conf RUN a2enmod rewrite