convert all spaces to tabs, lets see what breaks

Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle
2015-06-05 10:24:11 -07:00
parent de2e5568af
commit 17bbb62b99
50 changed files with 570 additions and 570 deletions

View File

@@ -2,21 +2,21 @@
# DESCRIPTION: Create evince container with its dependencies (https://wiki.gnome.org/Apps/Evince)
# AUTHOR: Christian Koep <christian.koep@fom-net.de>
# USAGE:
# # Build evince image
# docker build -t evince .
# # Build evince image
# docker build -t evince .
#
# # Run the container and mount your documents
# docker run -it \
# -v $HOME/documents/:/root/documents/ \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=$DISPLAY \
# evince
# # Run the container and mount your documents
# docker run -it \
# -v $HOME/documents/:/root/documents/ \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=$DISPLAY \
# evince
#
FROM debian:jessie
MAINTAINER Christian Koep <christian.koep@fom-net.de>
RUN apt-get -qq update && apt-get install -y --no-install-recommends \
evince
evince
CMD ["/usr/bin/evince"]