1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/n2n/Dockerfile

21 lines
439 B
Docker
Raw Normal View History

2019-05-30 11:39:48 +00:00
#
# Dockerfile for n2n
#
2019-10-01 03:51:50 +00:00
FROM debian:buster
2019-05-30 11:39:48 +00:00
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apt update \
2019-07-09 17:20:00 +00:00
&& apt install -y gnupg iptables lsb-release net-tools wget \
2019-10-01 03:51:50 +00:00
&& wget http://apt.ntop.org/buster/all/apt-ntop.deb \
2019-05-30 11:39:48 +00:00
&& dpkg -i apt-ntop.deb \
&& apt update \
&& apt install -y n2n \
&& rm -rf apt-ntop.deb /var/lib/apt/lists/*
2019-05-30 11:47:52 +00:00
EXPOSE 5645/udp 7654/udp
2019-05-30 11:39:48 +00:00
ENTRYPOINT ["supernode"]
2019-05-30 15:24:11 +00:00
CMD ["-l", "7654"]