mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-09 06:32:41 +01:00
9 lines
182 B
Docker
9 lines
182 B
Docker
|
|
FROM debian:sid
|
||
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||
|
|
|
||
|
|
RUN apt-get update && apt-get install -y \
|
||
|
|
imagemagick \
|
||
|
|
--no-install-recommends
|
||
|
|
|
||
|
|
ENTRYPOINT [ "imagemagick" ]
|