Dockerfile 494 B

123456789101112131415161718
  1. FROM mcr.microsoft.com/dotnet/core/sdk:3.1
  2. LABEL maintainer="Kirk Trombley <ktrom3894@gmail.com>"
  3. RUN apt update && apt install --yes libopus-dev ffmpeg
  4. WORKDIR /audiobot
  5. RUN curl https://splamy.de/api/nightly/ts3ab/master/download -o ./audiobot.zip \
  6. && unzip audiobot.zip \
  7. && rm audiobot.zip
  8. RUN curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl \
  9. && chmod a+rx /usr/local/bin/youtube-dl
  10. WORKDIR /data
  11. CMD dotnet /audiobot/TS3AudioBot.dll