upgrade to sameersbn/ubuntu:20141001, fixes shellshock

This commit is contained in:
Sameer Naik
2014-10-01 09:40:37 +05:30
parent 7bec626f6a
commit b3ca9b453b
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -1,6 +1,7 @@
# Changelog
**latest**
- upgrade to sameersbn/ubuntu:20141001, fixes shellshock
- mount volume at `/var/run/postgresql` allowing the postgresql unix socket to be exposed
**9.1**
+3 -3
View File
@@ -1,10 +1,10 @@
FROM sameersbn/ubuntu:12.04.20140818
FROM sameersbn/ubuntu:12.04.20141001
MAINTAINER sameer@damagehead.com
RUN apt-get update \
&& apt-get install -y --no-install-recommends postgresql postgresql-client pwgen \
&& apt-get install -y postgresql postgresql-client pwgen \
&& rm -rf /var/lib/postgresql \
&& rm -rf /var/lib/apt/lists/* # 20140818
&& rm -rf /var/lib/apt/lists/* # 20141001
ADD start /start
RUN chmod 755 /start