diff --git a/Dockerfile b/Dockerfile index e1d5255..5e0c557 100755 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,8 @@ FROM python:3.13.7-alpine3.22 ENV MR_DOWNLOAD_DIR="/download" RUN apk add --update --no-cache \ + # https://github.com/yt-dlp/yt-dlp/issues/14404 \ + deno \ curl # https://hub.docker.com/r/mwader/static-ffmpeg/tags diff --git a/src/media/about.go b/src/media/about.go index b3ad281..7575f62 100644 --- a/src/media/about.go +++ b/src/media/about.go @@ -1,13 +1,14 @@ package media import ( - "github.com/matishsiao/goInfo" - "github.com/rs/zerolog/log" "html/template" "media-roller/src/utils" "net/http" "regexp" "strings" + + "github.com/matishsiao/goInfo" + "github.com/rs/zerolog/log" ) var aboutIndexTmpl = template.Must(template.ParseFiles("templates/media/about.html")) @@ -28,6 +29,7 @@ func AboutIndex(w http.ResponseWriter, _ *http.Request) { "pythonVersion": strings.TrimPrefix(pythonVersion, "Python "), "ffmpegVersion": newlineRegex.Split(utils.RunCommand("ffmpeg", "-version"), -1), "ffprobeVersion": newlineRegex.Split(utils.RunCommand("ffprobe", "-version"), -1), + "deno": strings.TrimPrefix(utils.RunCommand("deno", "--version"), "go version "), "os": gi.OS, "kernel": gi.Kernel, "core": gi.Core, diff --git a/templates/media/about.html b/templates/media/about.html index 77682f8..b2c5597 100644 --- a/templates/media/about.html +++ b/templates/media/about.html @@ -32,6 +32,7 @@