moved init script to repo root

pull/2/head
Sameer Naik 2014-06-29 12:16:07 +05:30
parent 8672b1f2a7
commit bd802918fd
2 changed files with 3 additions and 3 deletions

View File

@ -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"]

View File