From bd802918fdf4516b74c21594e964f469a16b6d0c Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sun, 29 Jun 2014 12:16:07 +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 42bc2a9..e3f297b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,12 +10,12 @@ RUN apt-get update && \ dpkg -i /tmp/webmin_${WEBMIN_VERSION}_all.deb && rm -rf /tmp/webmin_${WEBMIN_VERSION}_all.deb && \ apt-get clean # 20140625 -ADD assets/init /app/init -RUN chmod 755 /app/init +ADD init /init +RUN chmod 755 /init EXPOSE 53/udp EXPOSE 10000 VOLUME ["/app/data"] -CMD ["/app/init"] +CMD ["/init"] diff --git a/assets/init b/init similarity index 100% rename from assets/init rename to init