9 lines
170 B
Docker
9 lines
170 B
Docker
FROM debian:12
|
|
|
|
RUN apt update && \
|
|
apt install -y minidlna minissdpd net-tools iproute2
|
|
|
|
COPY --chmod=755 files/start.sh /opt/start.sh
|
|
|
|
ENTRYPOINT ["/opt/start.sh"]
|