dockerfile: upgrade to `sameersbn/ubuntu:14.04.20150613

This commit is contained in:
Sameer Naik
2015-06-13 13:12:18 +05:30
parent 353b4b1bc7
commit 209a5f095a
+2 -2
View File
@@ -1,4 +1,4 @@
FROM sameersbn/ubuntu:14.04.20150604
FROM sameersbn/ubuntu:14.04.20150613
MAINTAINER sameer@damagehead.com
ENV PG_VERSION 9.4
@@ -7,7 +7,7 @@ RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-k
&& apt-get update \
&& apt-get install -y postgresql-${PG_VERSION} postgresql-client-${PG_VERSION} postgresql-contrib-${PG_VERSION} \
&& rm -rf /var/lib/postgresql \
&& rm -rf /var/lib/apt/lists/* # 20150604
&& rm -rf /var/lib/apt/lists/* # 20150613
ADD start /start
RUN chmod 755 /start