convert all spaces to tabs, lets see what breaks

Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle
2015-06-05 10:24:11 -07:00
parent de2e5568af
commit 17bbb62b99
50 changed files with 570 additions and 570 deletions

View File

@@ -1,18 +1,18 @@
# 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
# -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
gimp \
--no-install-recommends
ENTRYPOINT [ "gimp" ]