1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00
dockerfiles/live555/Dockerfile
2021-04-26 15:18:29 +08:00

18 lines
352 B
Docker

#
# Dockerfile for live555
#
FROM centos:8
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& yum install -y compat-openssl10 wget \
&& 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"]