10 lines
237 B
Docker
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"]
|