Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2016-09-27 14:25:18 -07:00
parent 01618cbef8
commit adc4d58f3e
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -35,6 +35,7 @@ RUN apt-get update && apt-get install -y \
libxtst6 \ libxtst6 \
locales \ locales \
python \ python \
qmmp \
xdg-utils \ xdg-utils \
--no-install-recommends \ --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
@ -48,9 +49,12 @@ ENV SLACK_VERSION 2.1.1
# download the deb and node # download the deb and node
RUN buildDeps=' \ RUN buildDeps=' \
curl \ curl \
gnupg \
' \ ' \
&& set -x \ && set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \ && 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/* \ && 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 \ && 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 \ && dpkg -i /tmp/slack-desktop.deb \