From a9d6ab10fd674a3ecb789619472a459118357f1e Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Mon, 4 Aug 2014 22:31:34 +0530 Subject: [PATCH] added --no-install-recommends to apt-get command, closes #3 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0e30f19..dbc96b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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