dockerfiles/icedove/Dockerfile

10 lines
205 B
Docker
Raw Normal View History

2015-01-07 15:09:24 +01:00
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
icedove \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2015-01-07 15:09:24 +01:00
ENTRYPOINT [ "icedove" ]