From c0e74d5c62160a5ec4e359cf4fc773c662b084a1 Mon Sep 17 00:00:00 2001 From: aleksanderbl29 <73799306+aleksanderbl29@users.noreply.github.com> Date: Fri, 24 May 2024 17:14:13 +0200 Subject: [PATCH] Split apt get --- pihole-unbound/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pihole-unbound/Dockerfile b/pihole-unbound/Dockerfile index 6aedaa5..23d5190 100644 --- a/pihole-unbound/Dockerfile +++ b/pihole-unbound/Dockerfile @@ -2,7 +2,9 @@ FROM pihole/pihole:2024.05.0 RUN echo "deb http://deb.debian.org/debian sid main" >> /etc/apt/sources.list -RUN apt-get update && apt-get upgrade -y && apt-get -t sid install -y unbound -V +RUN apt-get update +RUN apt-get upgrade -y +RUN apt-get -t sid install -y unbound -V COPY lighttpd-external.conf /etc/lighttpd/external.conf