From 803ad6ae9faa27172135e08e0db6b76999eb9c84 Mon Sep 17 00:00:00 2001 From: Stephane Gourichon Date: Sun, 17 Aug 2025 19:32:39 +0200 Subject: [PATCH] Perform another apt-get update. Strangely enough, on a Raspberry Pi another apt-get update is needed to find bind9. --- service_definitions/public/gourichon_org/domain/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_definitions/public/gourichon_org/domain/Dockerfile b/service_definitions/public/gourichon_org/domain/Dockerfile index ef4363a..52f4d59 100644 --- a/service_definitions/public/gourichon_org/domain/Dockerfile +++ b/service_definitions/public/gourichon_org/domain/Dockerfile @@ -1,6 +1,6 @@ FROM fsg-base:latest -RUN export DEBIAN_FRONTEND=noninteractive ; apt-get install --no-install-recommends -y bind9 +RUN export DEBIAN_FRONTEND=noninteractive ; apt-get update && apt-get install --no-install-recommends -y bind9 COPY bind_config/named.conf.local /etc/bind/ COPY bind_config/sites /etc/bind/sites