mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
0cd3e341a2
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
19 lines
380 B
Docker
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"]
|