5 lines
152 B
Docker
5 lines
152 B
Docker
|
FROM debian
|
||
|
RUN apt -y update && apt -y install dante-server
|
||
|
COPY danted.conf /etc/danted.conf
|
||
|
ENTRYPOINT ["/usr/sbin/danted","-f", "/etc/danted.conf"]
|