dockerfiles/imagemagick/Dockerfile
Jeff Nickoloff 66dcac3b51 Updated the default command to prompt for a valid Imagemagick command.
Signed-off-by: Jeff Nickoloff <jeff@allingeek.com>
2015-07-24 16:37:22 -07:00

10 lines
346 B
Docker

FROM debian:sid
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
imagemagick \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
CMD [ "echo", "Use one of the following commands [ animate | compare | composite | conjure | convert | display | identify | import | mogrify | montage | stream ]" ]