We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit e015b1aCopy full SHA for e015b1a
Dockerfile
@@ -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