mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
14 lines
209 B
Docker
14 lines
209 B
Docker
#
|
|
# Dockerfile for rtmp-client-arm
|
|
#
|
|
|
|
FROM easypi/ffmpeg-arm
|
|
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
ENV RTMP_DEV=/dev/video0 \
|
|
RTMP_FMT=flv \
|
|
RTMP_URI=
|
|
|
|
CMD ffmpeg -i $RTMP_DEV -f $RTMP_FMT $RTMP_URI
|