Эх сурвалжийг харах

Update ts3audiobot url and untar instead of unzip

Kirk Trombley 2 жил өмнө
parent
commit
94dcf82a3b
1 өөрчлөгдсөн 4 нэмэгдсэн , 4 устгасан
  1. 4 4
      Dockerfile

+ 4 - 4
Dockerfile

@@ -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