dockerfiles/libreoffice/Dockerfile

22 lines
484 B
Docker
Raw 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
#
FROM debian:stretch
MAINTAINER Jessie Frazelle <jess@linux.com>
2015-04-17 02:50:32 +02:00
RUN apt-get update && apt-get install -y \
libreoffice \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2015-04-17 02:50:32 +02:00
2015-04-17 15:55:38 +02:00
ENTRYPOINT [ "libreoffice" ]