grim/docker-bubbleupnpserver

Some tweaks to the readme

2015-03-09, Gary Kramlich
3c77e8f3c365
Some tweaks to the readme
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"]