123456789101112131415161718 |
- FROM mcr.microsoft.com/dotnet/core/sdk:3.1
- LABEL maintainer="Kirk Trombley <ktrom3894@gmail.com>"
- RUN apt update && apt install --yes libopus-dev ffmpeg unzip
-
- WORKDIR /audiobot
-
- RUN curl https://splamy.de/api/nightly/ts3ab/master/download -o ./audiobot.zip \
- && unzip audiobot.zip \
- && rm audiobot.zip
-
- RUN curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_linux -o /usr/local/bin/youtube-dl \
- && chmod a+rx /usr/local/bin/youtube-dl
- WORKDIR /data
- CMD dotnet /audiobot/TS3AudioBot.dll
|