mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
Added evince
This commit is contained in:
parent
b7107f2be9
commit
6c861be904
22
evince/Dockerfile
Normal file
22
evince/Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# VERSION: 0.1
|
||||||
|
# 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 .
|
||||||
|
#
|
||||||
|
# # 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
|
||||||
|
|
||||||
|
CMD ["/usr/bin/evince"]
|
Loading…
Reference in New Issue
Block a user