mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
19 lines
378 B
Docker
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"]
|