Skip to content

Commit

Permalink
Minimizing the Apache image
Browse files Browse the repository at this point in the history
  • Loading branch information
kstaken committed Jul 14, 2013
1 parent 99565da commit c6f1129
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# A basic apache server. To use either add or bind mount content under /var/www
FROM ubuntu:12.04

RUN apt-get update
RUN apt-get install -y apache2
MAINTAINER Kimbro Staken version: 0.1

RUN apt-get update && apt-get install -y apache2 && apt-get clean && rm -rf /var/lib/apt/lists/*

ENV APACHE_RUN_USER www-data
ENV APACHE_RUN_GROUP www-data
Expand Down

0 comments on commit c6f1129

Please sign in to comment.