Files
docker-minidlna/Dockerfile
Lev Rusanov 4aa0940556
Some checks failed
Auto-CI / stayactive (push) Has been cancelled
Auto-CI / build-amd64 (push) Has been cancelled
revert back to debian 10
Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
2025-08-17 19:19:50 +07:00

10 lines
237 B
Docker

FROM debian:10
RUN sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list && \
apt update && \
apt install -y minidlna minissdpd net-tools
COPY --chmod=755 files/start.sh /opt/start.sh
ENTRYPOINT ["/opt/start.sh"]