removed /var/lib/apt/lists to optimization image size

This commit is contained in:
Sameer Naik
2014-08-19 11:40:01 +05:30
parent ee0dd8c391
commit a8916326bc
+1 -1
View File
@@ -4,7 +4,7 @@ MAINTAINER sameer@damagehead.com
RUN apt-get update && \
apt-get install -y --no-install-recommends postgresql postgresql-client && \
rm -rf /var/lib/postgresql && \
apt-get clean # 20140804
apt-get clean && rm -rf /var/lib/apt/lists/* # 20140818
ADD start /start
RUN chmod 755 /start