# 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 " RUN apk --no-cache add \ --repository https://dl-3.alpinelinux.org/alpine/edge/testing \ evince \ ttf-opensans CMD ["/usr/bin/evince"]