9 lines
156 B
Docker
9 lines
156 B
Docker
FROM ubuntu
|
|
|
|
RUN apt-get update && apt-get install -y minidlna vim
|
|
|
|
COPY files/start.sh /opt/start.sh
|
|
RUN chmod 755 /opt/start.sh
|
|
|
|
ENTRYPOINT /opt/start.sh
|