Disable ipv6 by default

Since Docker doesn't install ipv6 iptables rules by default, we probably shouldn't build with it on.

Fixes #15.
This commit is contained in:
Jasper St. Pierre
2016-01-02 09:27:21 -08:00
parent dfd7a47e79
commit a2911e8e71

View File

@@ -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 \