dockerfiles/evince/Dockerfile

19 lines
380 B
Docker
Raw Normal View History

2017-04-07 15:56:05 +02:00
# Evince in a container
2015-06-05 18:14:14 +02:00
#
2017-04-07 15:56:05 +02:00
# docker run -it \
# -v $HOME/documents/:/root/documents/ \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=$DISPLAY \
# evince
2015-06-05 18:14:14 +02:00
#
2017-04-07 15:56:05 +02:00
FROM alpine:latest
2017-04-04 09:19:34 +02:00
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
2015-06-05 18:14:14 +02:00
2017-04-07 15:56:05 +02:00
RUN apk --no-cache add \
--repository https://dl-3.alpinelinux.org/alpine/edge/community \
evince \
2017-04-07 15:56:05 +02:00
ttf-opensans
2015-06-05 18:14:14 +02:00
CMD ["/usr/bin/evince"]