Mercurial > public > ssdt-docker
diff postgres/Dockerfile @ 163:daf91a3bbee5 production v1.2.0
flow: Merged <release> 'v1.2.0' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Tue, 15 Aug 2017 21:59:23 +0100 |
parents | 11fb5ba7f55b |
children | b0b52c426f16 |
line wrap: on
line diff
--- a/postgres/Dockerfile Fri Jun 16 17:14:15 2017 +0100 +++ b/postgres/Dockerfile Tue Aug 15 21:59:23 2017 +0100 @@ -1,7 +1,7 @@ # # Docker file to create postgres image for ssdt applications -FROM postgres:9.4.5 +FROM postgres:9.6.3 MAINTAINER Dave Smith smith@nwoca.org @@ -21,3 +21,14 @@ RUN echo $TZ > /etc/timezone \ && dpkg-reconfigure --frontend noninteractive tzdata + +COPY ssdt-entrypoint.sh /usr/local/bin/ + +RUN chmod 755 /usr/local/bin/ssdt-entrypoint.sh + +LABEL "io.ssdt.type"="db" + +ENTRYPOINT ["ssdt-entrypoint.sh"] + +CMD ["postgres"] + \ No newline at end of file