From 7a1c48f04471747399acffe3c43bcad6519eb520 Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Sat, 1 Oct 2022 13:48:04 +0200 Subject: [PATCH] Remove youtube-dl sinusbot remove the youtube-dl bin out of the sinusbot image as it is not needed and will be download with the egg install script --- bot/sinusbot/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/bot/sinusbot/Dockerfile b/bot/sinusbot/Dockerfile index 3f5e02a..5ac56ab 100644 --- a/bot/sinusbot/Dockerfile +++ b/bot/sinusbot/Dockerfile @@ -12,8 +12,6 @@ RUN apt update \ libasound2 libegl1-mesa libglib2.0-0 libnss3 libpci3 libpulse0 libxcursor1 libxslt1.1 libx11-xcb1 libxkbcommon0 bzip2 libxss1 libxcomposite1 \ && useradd -m -d /home/container container -RUN curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl \ - && chmod a+rx /usr/local/bin/youtube-dl ENV LANG C.UTF-8 ENV LC_ALL C.UTF-8