From 762b55d61f513b47d0daae7b374485c739cc5051 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sat, 28 Jun 2014 23:13:59 +0530 Subject: [PATCH] moved init script to repo root --- Dockerfile | 6 +++--- assets/init => init | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename assets/init => init (100%) diff --git a/Dockerfile b/Dockerfile index 532cc62..b7c2130 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,11 +6,11 @@ RUN apt-get update && \ rm -rf /var/lib/postgresql && \ apt-get clean # 20140525 -ADD assets/ /app/ -RUN chmod 755 /app/init +ADD init /init +RUN chmod 755 /init EXPOSE 5432 VOLUME ["/var/lib/postgresql"] -CMD ["/app/init"] +CMD ["/init"] diff --git a/assets/init b/init similarity index 100% rename from assets/init rename to init