dockerfiles/gimp/Dockerfile
Jessica Frazelle 17bbb62b99 convert all spaces to tabs, lets see what breaks
Signed-off-by: Jessica Frazelle <princess@docker.com>
2015-06-05 10:24:11 -07:00

19 lines
383 B
Docker

# Run gimp in a contianer
#
# docker run -d \
# -v /etc/localtime:/etc/localtime:ro \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# -v $HOME/Pictures:/root/Pictures \
# --name gimp \
# jess/gimp
#
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
gimp \
--no-install-recommends
ENTRYPOINT [ "gimp" ]