dockerfile: upgrade to `sameersbn/ubuntu:14.04.20150712

This commit is contained in:
Sameer Naik
2015-07-12 00:10:58 +05:30
parent b0102f69e7
commit 6237bf1164
+2 -2
View File
@@ -1,4 +1,4 @@
FROM sameersbn/ubuntu:14.04.20150613
FROM sameersbn/ubuntu:14.04.20150712
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/* # 20150613
&& rm -rf /var/lib/apt/lists/* # 20150712
ADD start /start
RUN chmod 755 /start