dockerfiles/tetris/Dockerfile
Jessica Frazelle 0691fba97f also update other images to alpine
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
2015-08-15 18:54:31 -07:00

31 lines
883 B
Docker

# 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
# USAGE:
# # Download tetris Dockerfile
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/tetris/Dockerfile
#
# # Build tetris image
# docker build -t tetris .
#
# docker run -it tetris
#
# Base docker image
FROM alpine:latest
MAINTAINER Jessica Frazelle <jess@docker.com>
# Install emacs:
# Note: Eamcs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
RUN apk update && apk add \
emacs \
--update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
&& rm -rf /var/cache/apk/*
# Autorun tetris
CMD ["/usr/bin/emacs", "-f", "tetris"]