Upgrade TS3Bot to commit 6d49bdfdaa.

- Adds support for youtube-dl parsing of URLs. This enables the bot to play SoundCloud, DailyMotion, etc. links and improves handling of YouTube links so they don't result in 403s.
master
Icedream 2015-10-16 19:56:33 +02:00
parent 547adb1eca
commit 84f3068aec
1 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@ RUN chmod +x ./ts3client.run &&\
USER root
# install the ts3bot-control app properly
ENV TS3BOT_COMMIT ab3e66ae8f62cac5ecd9a752637085c1e3f597ae
ENV TS3BOT_COMMIT 6d49bdfdaa1232b66df5ff70e884f137544a8a97
ADD https://github.com/icedream/ts3bot-control/archive/${TS3BOT_COMMIT}.tar.gz /home/app/ts3bot-control.tgz
WORKDIR /home/app
RUN tar xvf ts3bot-control.tgz &&\
@ -42,6 +42,10 @@ RUN tar xvf ts3bot-control.tgz &&\
WORKDIR /home/app/ts3bot
RUN npm install
# install youtube-dl
ADD https://yt-dl.org/latest/youtube-dl /usr/local/bin/youtube-dl
RUN chmod a+rx /usr/local/bin/youtube-dl
# initialize other configuration for daemons
COPY etc/ /etc