-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
41 lines (35 loc) · 973 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Base docker image
FROM debian:jessie
MAINTAINER Christophe Boucharlat <[email protected]>
# Slack Version 2.1.0
RUN apt-get update && apt-get install -y \
apt-utils \
dbus-x11 \
dunst \
hunspell-en-us \
python3-dbus \
software-properties-common \
libx11-xcb1 \
gconf2 \
libgtk2.0-0 \
libnotify4 \
libxtst6 \
libnss3 \
gvfs-bin \
xdg-utils \
apt-transport-https \
libgnome-keyring0 \
gir1.2-gnomekeyring-1.0 \
libappindicator1 \
libasound2 \
wget \
--no-install-recommends && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN wget https://downloads.slack-edge.com/linux_releases/slack-desktop-2.1.0-amd64.deb -O /tmp/slack-desktop-2.1.0-amd64.deb && \
cd /tmp/ && \
dpkg -i slack-desktop-2.1.0-amd64.deb && \
rm -rf /tmp/slack-desktop*.deb
ENV QT_XKB_CONFIG_ROOT=/usr/share/X11/xkb
# Autorun Slack
CMD ["/usr/lib/slack/slack"]