Files
docker-minidlna/Dockerfile
Lev Rusanov 061cea64c0
Some checks failed
Auto-CI / stayactive (push) Has been cancelled
Auto-CI / build-amd64 (push) Has been cancelled
update debian to 12
Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
2025-08-17 20:27:33 +07:00

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"]