Skip to content

Commit e015b1a

Browse files
committed
Initial version
0 parents  commit e015b1a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# vnc-recorder
2+
#
3+
# VERSION 0.1
4+
5+
FROM debian:wheezy
6+
MAINTAINER Richard North <rich.north@gmail.com>
7+
8+
LABEL Description="This image can be used to create a sidekick container for recording videos of VNC sessions hosted in other containers"
9+
10+
RUN apt-get update && apt-get install -y \
11+
python-pip python-dev \
12+
&& rm -rf /var/lib/apt/lists/*
13+
14+
RUN pip install vnc2flv
15+
16+
ENTRYPOINT ["flvrec.py"]
17+
CMD ["--help"]

0 commit comments

Comments
 (0)