1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/rtmp/server/Dockerfile
2017-05-08 07:05:07 +08:00

16 lines
238 B
Docker

#
# Dockerfile for rtmp-server
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
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;"]