1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 02:31:31 +00:00
dockerfiles/n2n/arm/Dockerfile
2019-07-10 01:20:00 +08:00

24 lines
606 B
Docker

#
# Dockerfile for n2n-arm
#
FROM arm32v7/debian:stretch
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apt update \
&& apt install -y gnupg iptables lsb-release net-tools wget \
&& wget -qO- http://packages.ntop.org/apt/ntop.key | apt-key add - \
&& { \
echo "deb http://apt.ntop.org/stretch_pi armhf/"; \
echo "deb http://apt.ntop.org/stretch_pi all/"; \
} > /etc/apt/sources.list.d/ntop.list \
&& apt update \
&& apt install -y n2n \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 5645/udp 7654/udp
ENTRYPOINT ["supernode"]
CMD ["-l", "7654"]