diff --git a/slack/Dockerfile b/slack/Dockerfile index d0fbd4a..f0f80d1 100644 --- a/slack/Dockerfile +++ b/slack/Dockerfile @@ -35,7 +35,6 @@ RUN apt-get update && apt-get install -y \ libxtst6 \ locales \ python \ - qmmp \ xdg-utils \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* @@ -49,12 +48,9 @@ ENV SLACK_VERSION 2.1.1 # download the deb and node RUN buildDeps=' \ curl \ - gnupg \ ' \ && set -x \ && apt-get update && apt-get install -y $buildDeps --no-install-recommends \ - && curl -sL https://deb.nodesource.com/setup_6.x | bash - \ - && apt-get update && apt-get install -y nodejs --no-install-recommends \ && rm -rf /var/lib/apt/lists/* \ && curl -sSL "https://downloads.slack-edge.com/linux_releases/slack-desktop-${SLACK_VERSION}-amd64.deb" > /tmp/slack-desktop.deb \ && dpkg -i /tmp/slack-desktop.deb \