dockerfiles/evince/Dockerfile
2017-04-07 15:58:31 +02:00

19 lines
378 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/testing \
evince \
ttf-opensans
CMD ["/usr/bin/evince"]