Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
day: sunday
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: docker
directory: /
schedule:
interval: monthly
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
#
# VERSION 0.1

FROM debian:10.5-slim
FROM debian:bookworm-slim

LABEL Description="This image can be used to create a sidekick container for recording videos of VNC sessions hosted in other containers"
LABEL maintainer="Richard North <[email protected]>"

RUN apt-get update && apt-get install -y \
python-pip python-dev ffmpeg \
python3-pip python3-dev ffmpeg pipx \
&& rm -rf /var/lib/apt/lists/* \
&& pip install vnc2flv \
&& pipx install vnc2flv3 \
&& rm -fr /tmp/*

ENTRYPOINT ["flvrec.py"]
Expand Down