dockerfiles/icedove/Dockerfile

10 lines
212 B
Docker
Raw Normal View History

FROM debian:stretch
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
2015-01-07 15:09:24 +01:00
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" ]