1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/rtmp/server/Dockerfile

16 lines
239 B
Docker
Raw Normal View History

2016-07-03 18:07:38 +02:00
#
# Dockerfile for rtmp-server
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
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;"]