added --no-install-recommends to apt-get command, closes #3

This commit is contained in:
Sameer Naik
2014-08-04 22:31:34 +05:30
parent 2b104e4667
commit a9d6ab10fd
+2 -2
View File
@@ -2,9 +2,9 @@ FROM sameersbn/ubuntu:12.04.20140628
MAINTAINER sameer@damagehead.com
RUN apt-get update && \
apt-get install -y postgresql postgresql-client && \
apt-get install -y --no-install-recommends postgresql postgresql-client && \
rm -rf /var/lib/postgresql && \
apt-get clean # 20140525
apt-get clean # 20140804
ADD start /start
RUN chmod 755 /start