1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/rtmp/server/Dockerfile

16 lines
238 B
Docker
Raw Normal View History

2016-07-03 18:07:38 +02:00
#
# Dockerfile for rtmp-server
#
FROM alpine
2017-05-08 01:05:07 +02:00
MAINTAINER kev <noreply@easypi.pro>
2016-07-03 18:07:38 +02:00
RUN apk add --no-cache nginx-rtmp
COPY nginx.conf /etc/nginx/nginx.conf
COPY html /var/lib/nginx/html
EXPOSE 80 1935
CMD ["nginx", "-g", "daemon off;"]