|
@@ -2,13 +2,13 @@ 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
|
|
|
+RUN apt update && apt install --yes libopus-dev ffmpeg
|
|
|
|
|
|
WORKDIR /audiobot
|
|
|
|
|
|
-RUN curl https://splamy.de/api/nightly/projects/ts3ab/master_linux_x64/download -o ./audiobot.zip \
|
|
|
- && unzip audiobot.zip \
|
|
|
- && rm audiobot.zip
|
|
|
+RUN curl https://splamy.de/api/nightly/projects/ts3ab/master_linux_x64/download -o ./audiobot.tgz \
|
|
|
+ && tar xvf audiobot.tgz \
|
|
|
+ && rm audiobot.tgz
|
|
|
|
|
|
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
|