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 @@
# VERSION: 0.1
# DESCRIPTION: Run text-based emacs tetris in a container
# AUTHOR: Jessica Frazelle <jess@docker.com>
# VERSION: 0.1
# DESCRIPTION: Run text-based emacs tetris in a container
# AUTHOR: Jessica Frazelle <jess@docker.com>
# COMMENTS:
# This file describes how to build tetris in a container with all
# dependencies installed.
# Tested on Debian Jessie
# This file describes how to build tetris in a container with all
# dependencies installed.
# Tested on Debian Jessie
# USAGE:
# # Download tetris Dockerfile
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/tetris/Dockerfile
# # Download tetris Dockerfile
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/tetris/Dockerfile
#
# # Build tetris image
# docker build -t tetris .
# # Build tetris image
# docker build -t tetris .
#
# docker run -it tetris
# docker run -it tetris
#
# Base docker image
@@ -21,8 +21,8 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
# Install emacs
RUN apt-get update && apt-get install -y \
emacs \
--no-install-recommends
emacs \
--no-install-recommends
# Autorun tetris
CMD ["/usr/bin/emacs", "-f", "tetris"]