- 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
- WORKDIR /data
- COPY pull/youtube-dl /usr/local/bin/
- RUN chmod a+rx /usr/local/bin/youtube-dl
- COPY pull/audiobot/* /audiobot/
- CMD dotnet /audiobot/TS3AudioBot.dll
|