1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/live555/Dockerfile

18 lines
352 B
Docker
Raw Normal View History

2016-07-04 13:56:20 +00:00
#
# Dockerfile for live555
#
2021-04-26 07:18:29 +00:00
FROM centos:8
MAINTAINER EasyPi Software Foundation
2016-07-04 13:56:20 +00:00
RUN set -xe \
2021-04-26 07:18:29 +00:00
&& yum install -y compat-openssl10 wget \
2016-07-04 13:56:20 +00:00
&& 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"]