10 lines
213 B
Docker
Raw Normal View History

2015-04-16 17:50:32 -07: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-16 17:50:32 -07:00
2015-04-17 06:55:38 -07:00
ENTRYPOINT [ "libreoffice" ]