From b4a4f4feade8c7c3f86676e7f5d04f1caa640c7d Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Tue, 16 Apr 2024 16:18:06 +0200 Subject: [PATCH] fix netcat Signed-off-by: Christian Richter --- unbound/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unbound/Dockerfile b/unbound/Dockerfile index e184eca..c353e77 100644 --- a/unbound/Dockerfile +++ b/unbound/Dockerfile @@ -2,7 +2,7 @@ FROM debian:latest LABEL maintainer="dragonchaser " EXPOSE 5335/udp RUN apt-get update \ - && apt-get -y install unbound netcat + && apt-get -y install unbound netcat-traditional COPY unbound/config.conf /etc/unbound/unbound.conf.d/ COPY unbound/entrypoint.sh / ENTRYPOINT /entrypoint.sh