mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-07 12:39:10 +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" ]
|