1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-30 09:16:58 +02:00
dockerfiles/rtmp/server/Dockerfile
2016-07-04 00:07:38 +08:00

16 lines
239 B
Docker

#
# 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;"]