1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-27 02:09:06 +02:00
dockerfiles/rtmp/client/Dockerfile

17 lines
282 B
Docker
Raw Normal View History

2016-02-24 07:48:14 +02:00
#
# Dockerfile for rtmp-client-arm
#
FROM vimagick/alpine-arm
2016-05-01 03:06:20 +02:00
MAINTAINER kev <noreply@easypi.info>
2016-02-24 07:48:14 +02:00
RUN set -xe \
&& apk add -U ffmpeg \
&& rm -rf /var/cache/apk/*
2016-02-26 11:00:00 +02:00
ENV RTMP_DEV=/dev/video0 \
RTMP_FMT=flv \
RTMP_URI=
CMD ffmpeg -i $RTMP_DEV -f $RTMP_FMT $RTMP_URI