Dockerfile 321 B

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