diff --git a/Dockerfile b/Dockerfile index ac0d823..915f3ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,21 +1,23 @@ -# version 1.6.1-2 +# version 1.6.3 # docker-version 1.11.1 -FROM ubuntu:15.04 -MAINTAINER Jim Myhrberg "contact@jimeh.me" +FROM arm32v7/debian:latest +MAINTAINER Jimmy Selgen Nielsen "jimmy.selgen@gmail.com" -ENV ZNC_VERSION 1.6.1 +ENV ZNC_VERSION 1.6.5 RUN apt-get update \ && apt-get install -y sudo wget build-essential libssl-dev libperl-dev \ - pkg-config swig3.0 libicu-dev ca-certificates \ + pkg-config swig3.0 libicu-dev ca-certificates python3 python3-dev python3-pip \ && mkdir -p /src \ && cd /src \ && wget "http://znc.in/releases/archive/znc-${ZNC_VERSION}.tar.gz" \ && tar -zxf "znc-${ZNC_VERSION}.tar.gz" \ && cd "znc-${ZNC_VERSION}" \ - && ./configure --disable-ipv6 \ + && ./configure --disable-ipv6 --enable-python \ && make \ && make install \ + && cd / \ + && pip3 install requests \ && apt-get remove -y wget \ && apt-get autoremove -y \ && apt-get clean \