From a2911e8e71eb6b562a0372784bdcdcc0e424ed87 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sat, 2 Jan 2016 09:27:21 -0800 Subject: [PATCH] Disable ipv6 by default Since Docker doesn't install ipv6 iptables rules by default, we probably shouldn't build with it on. Fixes #15. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d6fcadc..3dc2026 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update \ && wget "http://znc.in/releases/archive/znc-${ZNC_VERSION}.tar.gz" \ && tar -zxf "znc-${ZNC_VERSION}.tar.gz" \ && cd "znc-${ZNC_VERSION}" \ - && ./configure \ + && ./configure --disable-ipv6 \ && make \ && make install \ && apt-get remove -y wget \