mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
d639673cf6
Signed-off-by: Jess Frazelle <acidburn@google.com>
29 lines
814 B
Docker
29 lines
814 B
Docker
# DESCRIPTION: Run text-based emacs tetris in a container
|
|
# AUTHOR: Jessie Frazelle <jess@linux.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 https://raw.githubusercontent.com/jessfraz/dockerfiles/master/tetris/Dockerfile
|
|
#
|
|
# # Build tetris image
|
|
# docker build -t tetris .
|
|
#
|
|
# docker run -it tetris
|
|
#
|
|
|
|
# Base docker image
|
|
FROM alpine:latest
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
# Install emacs:
|
|
# Note: Emacs is only in testing 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/testing/ \
|
|
emacs
|
|
|
|
# Autorun tetris
|
|
CMD ["/usr/bin/emacs", "-f", "tetris"]
|