From 4a17db48cc3d07114375d10caeea41049480d61d Mon Sep 17 00:00:00 2001 From: Chris Crowe <425808+chriscrowe@users.noreply.github.com> Date: Tue, 2 Feb 2021 09:04:09 -0800 Subject: [PATCH] Dockerfile fix Change install_unbound_and_s6_init.sh to start_unbound_and_s6_init.sh --- one-container/pihole-unbound/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/one-container/pihole-unbound/Dockerfile b/one-container/pihole-unbound/Dockerfile index 49b56a9..94a3e68 100644 --- a/one-container/pihole-unbound/Dockerfile +++ b/one-container/pihole-unbound/Dockerfile @@ -3,7 +3,7 @@ RUN apt update && apt install -y unbound COPY lighttpd-external.conf /etc/lighttpd/external.conf COPY unbound-pihole.conf /etc/unbound/unbound.conf.d/pi-hole.conf -COPY install_unbound_and_s6_init.sh install_unbound_and_s6_init.sh +COPY start_unbound_and_s6_init.sh start_unbound_and_s6_init.sh -RUN chmod +x install_unbound_and_s6_init.sh -ENTRYPOINT ./install_unbound_and_s6_init.sh \ No newline at end of file +RUN chmod +x start_unbound_and_s6_init.sh +ENTRYPOINT ./start_unbound_and_s6_init.sh