mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-10 04:07:04 +02:00
21 lines
430 B
Docker
21 lines
430 B
Docker
|
#
|
||
|
# Dockerfile for n2n
|
||
|
#
|
||
|
|
||
|
FROM debian:stretch
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
RUN set -xe \
|
||
|
&& apt update \
|
||
|
&& apt install -y gnupg lsb-release wget \
|
||
|
&& wget http://apt.ntop.org/stretch/all/apt-ntop.deb \
|
||
|
&& dpkg -i apt-ntop.deb \
|
||
|
&& apt update \
|
||
|
&& apt install -y n2n \
|
||
|
&& rm -rf apt-ntop.deb /var/lib/apt/lists/*
|
||
|
|
||
|
EXPOSE 5645/udp # management
|
||
|
EXPOSE 7654/udp # main
|
||
|
|
||
|
ENTRYPOINT ["supernode"]
|