1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/live555/Dockerfile

17 lines
302 B
Docker
Raw Normal View History

2016-07-04 13:56:20 +00:00
#
# Dockerfile for live555
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2016-07-04 13:56:20 +00:00
RUN set -xe \
&& wget -qP /usr/local/bin/ http://www.live555.com/mediaServer/linux/live555MediaServer \
&& chmod +x /usr/local/bin/live555MediaServer
WORKDIR /data
EXPOSE 80 554
ENTRYPOINT ["live555MediaServer"]