grim/docker-bubbleupnpserver

Initial revision

2015-03-09, Gary Kramlich
3805585d315e
Parents
Children fdafd8e0ef45
Initial revision
  • +18 -0
    Dockerfile
  • --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/Dockerfile Mon Mar 09 23:07:19 2015 -0500
    @@ -0,0 +1,18 @@
    +FROM debian:wheezy
    +
    +RUN apt-get update && \
    + apt-get install -y --no-install-recommends wget openjdk-7-jre-headless unzip && \
    + apt-get install -y ffmpeg && \
    + mkdir /bubbleupnpserver && \
    + cd /bubbleupnpserver && \
    + wget http://www.bubblesoftapps.com/bubbleupnpserver/BubbleUPnPServer-distrib.zip && \
    + unzip BubbleUPnPServer-distrib.zip && \
    + chmod +x launch.sh && \
    + rm BubbleUPnPServer-distrib.zip && \
    + apt-get remove --purge -y wget unzip && \
    + rm -rf /var/lib/apt/lists/*
    +
    +EXPOSE 58050/tcp 58051/tcp 1900/udp
    +
    +ENTRYPOINT ["/bubbleupnpserver/launch.sh"]
    +