1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/vnc2flv/Dockerfile

22 lines
428 B
Docker
Raw Normal View History

2016-11-15 00:41:05 +00:00
#
# Dockerfile for vnc2flv
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2016-11-15 00:41:05 +00:00
RUN set -xe \
&& apk add --no-cache build-base \
python \
python-dev \
py-pip \
&& pip install vnc2flv \
&& apk del --purge build-base \
python-dev \
py-pip
WORKDIR /data
ENTRYPOINT ["flvrec.py"]
CMD ["--help"]