Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2016-09-27 18:07:31 -07:00
parent 693019b4c7
commit 6c18beb430
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

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