dockerfiles/libreoffice/Dockerfile

22 lines
492 B
Docker
Raw Permalink Normal View History

# Run Libreoffice in a container
# docker run -d \
# -v /etc/localtime:/etc/localtime:ro \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# -v $HOME/slides:/root/slides \
# -e GDK_SCALE \
# -e GDK_DPI_SCALE \
# --name libreoffice \
# jess/libreoffice
#
2017-04-07 22:34:50 +02:00
FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
2015-04-17 02:50:32 +02:00
2017-04-07 22:34:50 +02:00
RUN apk --no-cache add \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \
libreoffice \
2017-04-07 22:34:50 +02:00
ttf-dejavu
2015-04-17 02:50:32 +02:00
2015-04-17 15:55:38 +02:00
ENTRYPOINT [ "libreoffice" ]