mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-30 09:16:58 +02:00
22 lines
428 B
Docker
22 lines
428 B
Docker
#
|
|
# Dockerfile for vnc2flv
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
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"]
|