Skip to content

Arm32v7 support #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 "[email protected]"
FROM arm32v7/debian:latest
MAINTAINER Jimmy Selgen Nielsen "[email protected]"

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 \
Expand Down