Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
6 lines (5 sloc) 253 Bytes
FROM alpine:3.6
COPY ./janus-pp-rec /usr/local/bin/janus-pp-rec
COPY ./convert-mjr-to-webm.sh /usr/local/bin/mjr2webm
RUN apk update && apk add glib ffmpeg jansson && chmod a+x /usr/local/bin/mjr2webm && rm -rf /var/cache/apk/*
ENTRYPOINT ["mjr2webm"]