diff --git a/Dockerfile b/Dockerfile index 00a1ad8..1ccecdd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,15 @@ FROM ubuntu:latest MAINTAINER John Fink -RUN apt-get update # Fri Oct 24 13:09:23 EDT 2014 -RUN apt-get -y upgrade -RUN DEBIAN_FRONTEND=noninteractive apt-get -y install mysql-client mysql-server apache2 libapache2-mod-php5 pwgen python-setuptools vim-tiny php5-mysql php5-ldap +RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y install \ + mysql-client \ + mysql-server \ + apache2 \ + libapache2-mod-php5 \ + pwgen \ + python-setuptools \ + vim-tiny \ + php5-mysql \ + php5-ldap RUN easy_install supervisor ADD ./scripts/start.sh /start.sh ADD ./scripts/foreground.sh /etc/apache2/foreground.sh