dockerfiles/libreoffice/Dockerfile

10 lines
213 B
Docker
Raw Normal View History

2015-04-17 02:50:32 +02:00
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
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" ]