mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-30 09:16:58 +02:00
16 lines
239 B
Docker
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;"]
|