mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
slack
This commit is contained in:
parent
a41fb9b292
commit
9f1d18eb51
28
slack/Dockerfile
Normal file
28
slack/Dockerfile
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# To use:
|
||||||
|
# Needs X11 socket and dbus mounted
|
||||||
|
# docker run --rm -it \
|
||||||
|
# -v /etc/machine-id:/etc/machine-id:ro \
|
||||||
|
# -v /etc/localtime:/etc/localtime:ro \
|
||||||
|
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||||
|
# -e DISPLAY=unix$DISPLAY \
|
||||||
|
# --device /dev/snd:/dev/snd \
|
||||||
|
# -v /var/run/dbus:/var/run/dbus \
|
||||||
|
# --name slack \
|
||||||
|
# jess/slack
|
||||||
|
|
||||||
|
FROM ubuntu:14.04
|
||||||
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
dbus-x11 \
|
||||||
|
dunst \
|
||||||
|
hunspell-en-us \
|
||||||
|
python3-dbus \
|
||||||
|
software-properties-common \
|
||||||
|
--no-install-recommends && \
|
||||||
|
apt-add-repository -y ppa:rael-gc/scudcloud && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
scudcloud
|
||||||
|
|
||||||
|
ENTRYPOINT ["/usr/bin/scudcloud"]
|
Loading…
Reference in New Issue
Block a user