dockerfiles/dunnet/Dockerfile

30 lines
843 B
Docker
Raw Normal View History

# VERSION: 0.1
# DESCRIPTION: Run text-based game dunnet in a container
# AUTHOR: Jessica Frazelle <jess@docker.com>
2014-10-20 10:20:26 +02:00
# COMMENTS:
# This file describes how to build dunnet in a container with all
# dependencies installed.
# Tested on Debian Jessie
2014-10-20 10:20:26 +02:00
# USAGE:
# # Download dunnet Dockerfile
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/dunnet/Dockerfile
2014-10-20 10:20:26 +02:00
#
# # Build dunnet image
# docker build -t dunnet .
2014-10-20 10:20:26 +02:00
#
# docker run -it dunnet
2014-10-20 10:20:26 +02:00
#
# Base docker image
FROM alpine:latest
2014-10-20 10:20:26 +02:00
MAINTAINER Jessica Frazelle <jess@docker.com>
# Install emacs:
# Note: Emacs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
RUN apk --no-cache add \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
emacs
2014-10-20 10:20:26 +02:00
# Autorun dunnet
CMD ["/usr/bin/emacs", "-batch", "-l", "dunnet"]