mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
18 lines
352 B
Docker
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"]
|