1
0
Fork 0

Fork to yt-mp3-ui

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2026-07-26 08:20:36 +02:00
commit 9c6360e9c4
Signed by: jriou
GPG key ID: 9A099EDA51316854
10 changed files with 243 additions and 288 deletions

10
entrypoint.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
set -e
# yt-dlp breaks whenever YouTube changes; refresh to latest before the server
# imports it. A failed update (e.g. no network) must not stop the app from
# starting with the version baked into the image.
python -m pip install --user --upgrade --disable-pip-version-check yt-dlp \
|| echo "yt-dlp auto-update failed; starting with the installed version" >&2
exec "$@"