Files
docker-compose/dante/Dockerfile
2023-01-06 10:20:48 +00:00

14 lines
381 B
Docker

FROM ubuntu
MAINTAINER rmj014@gmail.com
RUN apt-get update && apt-get -y upgrade \
&& apt-get install -y iputils-ping curl net-tools iptables dante-server
RUN apt-get install -y vim
ADD sockd.conf /etc/danted.conf
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ADD run.sh /usr/local/sbin/run
RUN chmod 755 /usr/local/sbin/run
ENTRYPOINT /usr/local/sbin/run