jimeh / docker-znc

Run the ZNC IRC Bouncer in a Docker container.
136 stars 86 forks source link

Doesn't enable python support #9

Open hamiltont opened 9 years ago

hamiltont commented 9 years ago

If you wnat to add a git branch + docker index tag for those desiring python that would be great. If not, here are the minor changes needed in case anyone else wants to do this as well:

 # Install build dependencies.
 apt-get update
-apt-get install -y wget build-essential libssl-dev libperl-dev pkg-config
+apt-get install -y software-properties-common python-software-properties
+add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
+apt-get update
+apt-get build-dep -y znc
+apt-get install -y wget

and

-./configure && make && make install
+./configure --enable-python && make && make install