2015-06-05 19:24:11 +02:00
|
|
|
# DESCRIPTION: Run text-based emacs tetris in a container
|
2016-09-20 00:25:05 +02:00
|
|
|
# AUTHOR: Jessie Frazelle <jess@linux.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
|
2016-06-06 05:40:20 +02:00
|
|
|
# dependencies installed.
|
2015-06-05 19:24:11 +02:00
|
|
|
# Tested on Debian Jessie
|
2014-10-20 12:09:52 +02:00
|
|
|
# USAGE:
|
2015-06-05 19:24:11 +02:00
|
|
|
# # Download tetris Dockerfile
|
2016-10-25 22:37:56 +02:00
|
|
|
# wget https://raw.githubusercontent.com/jessfraz/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
|
2017-03-09 19:14:37 +01:00
|
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
2014-10-20 12:09:52 +02:00
|
|
|
|
2015-08-16 03:54:31 +02:00
|
|
|
# Install emacs:
|
2016-12-02 22:42:52 +01:00
|
|
|
# Note: Emacs is only in community repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
|
2016-06-06 05:40:20 +02:00
|
|
|
RUN apk --no-cache add \
|
2018-11-29 22:49:49 +01:00
|
|
|
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
|
2016-06-06 05:40:20 +02:00
|
|
|
emacs
|
2014-10-20 12:09:52 +02:00
|
|
|
|
|
|
|
# Autorun tetris
|
|
|
|
CMD ["/usr/bin/emacs", "-f", "tetris"]
|