2015-06-05 19:24:11 +02:00
|
|
|
# VERSION: 0.1
|
|
|
|
# DESCRIPTION: Run text-based emacs tetris in a container
|
|
|
|
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
2014-10-20 12:09:52 +02:00
|
|
|
# COMMENTS:
|
2015-06-05 19:24:11 +02:00
|
|
|
# This file describes how to build tetris in a container with all
|
|
|
|
# dependencies installed.
|
|
|
|
# Tested on Debian Jessie
|
2014-10-20 12:09:52 +02:00
|
|
|
# USAGE:
|
2015-06-05 19:24:11 +02:00
|
|
|
# # Download tetris Dockerfile
|
|
|
|
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/tetris/Dockerfile
|
2014-10-20 12:09:52 +02:00
|
|
|
#
|
2015-06-05 19:24:11 +02:00
|
|
|
# # Build tetris image
|
|
|
|
# docker build -t tetris .
|
2014-10-20 12:09:52 +02:00
|
|
|
#
|
2015-06-05 19:24:11 +02:00
|
|
|
# docker run -it tetris
|
2014-10-20 12:09:52 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
# Base docker image
|
2015-08-16 03:54:31 +02:00
|
|
|
FROM alpine:latest
|
2014-10-20 12:09:52 +02:00
|
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
|
2015-08-16 03:54:31 +02:00
|
|
|
# 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 \
|
2015-06-05 19:24:11 +02:00
|
|
|
emacs \
|
2015-08-16 03:54:31 +02:00
|
|
|
--update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
|
|
|
&& rm -rf /var/cache/apk/*
|
2014-10-20 12:09:52 +02:00
|
|
|
|
|
|
|
# Autorun tetris
|
|
|
|
CMD ["/usr/bin/emacs", "-f", "tetris"]
|