dockerfile readability updates

This commit is contained in:
Sameer Naik
2014-09-04 14:23:45 +05:30
parent 81786d6f16
commit abcbb9b17d
+4 -4
View File
@@ -1,10 +1,10 @@
FROM sameersbn/ubuntu:12.04.20140818
MAINTAINER sameer@damagehead.com
RUN apt-get update && \
apt-get install -y --no-install-recommends postgresql postgresql-client && \
rm -rf /var/lib/postgresql && \
rm -rf /var/lib/apt/lists/* # 20140818
RUN apt-get update \
&& apt-get install -y --no-install-recommends postgresql postgresql-client \
&& rm -rf /var/lib/postgresql \
&& rm -rf /var/lib/apt/lists/* # 20140818
ADD start /start
RUN chmod 755 /start