dockerfiles/evince/Dockerfile
Jess Frazelle 0cd3e341a2
update evince
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2017-09-18 14:44:32 -04:00

19 lines
380 B
Docker

# Evince in a container
#
# docker run -it \
# -v $HOME/documents/:/root/documents/ \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=$DISPLAY \
# evince
#
FROM alpine:latest
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
RUN apk --no-cache add \
--repository https://dl-3.alpinelinux.org/alpine/edge/community \
evince \
ttf-opensans
CMD ["/usr/bin/evince"]