You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just want to point out some findings: If you run YoutubeExplode in a docker container based on alpine, you cannot use the linux binaries from this repo.
I guess it's because they are linked against the glibc linker: Some hints
So, you have to install ffmpeg the alpine linux way like: apk add ffmpeg in your Dockerfile like so:
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine
USER root
WORKDIR /tmp
RUN apk -q update && apk add -q ffmpeg && rm -rf /var/cache/*
The text was updated successfully, but these errors were encountered:
Hi
Just want to point out some findings: If you run
YoutubeExplode
in a docker container based on alpine, you cannot use the linux binaries from this repo.I guess it's because they are linked against the
glibc
linker: Some hintsSo, you have to install ffmpeg the alpine linux way like:
apk add ffmpeg
in your Dockerfile like so:The text was updated successfully, but these errors were encountered: