dockerfiles/tetris/Dockerfile

29 lines
826 B
Docker
Raw Normal View History

# DESCRIPTION: Run text-based emacs tetris in a container
# AUTHOR: Jessie Frazelle <jess@linux.com>
2014-10-20 12:09:52 +02:00
# COMMENTS:
# 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:
# # Download tetris Dockerfile
# wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/tetris/Dockerfile
2014-10-20 12:09:52 +02:00
#
# # Build tetris image
# docker build -t tetris .
2014-10-20 12:09:52 +02:00
#
# docker run -it tetris
2014-10-20 12:09:52 +02:00
#
# Base docker image
FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
2014-10-20 12:09:52 +02:00
# Install emacs:
# Note: Emacs is only in community repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
RUN apk --no-cache add \
--repository https://dl-3.alpinelinux.org/alpine/edge/community/ \
emacs
2014-10-20 12:09:52 +02:00
# Autorun tetris
CMD ["/usr/bin/emacs", "-f", "tetris"]