diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-08-04 10:26:31 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-08-04 10:26:31 +0000 |
commit | a739140c048d8dc8222fe529fd35019319c6f3ed (patch) | |
tree | 50abaef9e7b228cce7adf03bd7ebf58eeadd6dec /Containerfile | |
parent | 35ca449c9dfead2a8039c796ae7ba80881bf9813 (diff) | |
download | steve-bot-a739140c048d8dc8222fe529fd35019319c6f3ed.tar steve-bot-a739140c048d8dc8222fe529fd35019319c6f3ed.tar.gz steve-bot-a739140c048d8dc8222fe529fd35019319c6f3ed.tar.bz2 steve-bot-a739140c048d8dc8222fe529fd35019319c6f3ed.tar.lz steve-bot-a739140c048d8dc8222fe529fd35019319c6f3ed.tar.xz steve-bot-a739140c048d8dc8222fe529fd35019319c6f3ed.tar.zst steve-bot-a739140c048d8dc8222fe529fd35019319c6f3ed.zip |
player: switch to yt-dlp
Diffstat (limited to 'Containerfile')
-rw-r--r-- | Containerfile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Containerfile b/Containerfile index 362bbcc..44b2cd4 100644 --- a/Containerfile +++ b/Containerfile @@ -1,11 +1,12 @@ -FROM ghcr.io/void-linux/void-musl:d1ee412 +FROM ghcr.io/void-linux/void-musl:20240526R1 -RUN xbps-install -Suy \ +RUN xbps-install -Suy && xbps-install -y \ make \ gcc \ shadow \ python3 \ python3-async-timeout \ + python3-aiohttp \ python3-GitPython \ python3-colorama \ python3-dateutil \ @@ -20,7 +21,8 @@ RUN xbps-install -Suy \ python3-requests \ python3-six \ python3-virtualenv \ - python3-youtube-dl + yt-dlp \ + ffmpeg6 # Can't do non-rootless user because we can't mount the various config files as # a non-root user. If we ignore the write operations then this would work just |