dockerfiles/dunnet/Dockerfile
Jess Frazelle d639673cf6
http:// -> https://
Signed-off-by: Jess Frazelle <acidburn@google.com>
2016-10-25 13:37:56 -07:00

29 lines
823 B
Docker

# DESCRIPTION: Run text-based game dunnet in a container
# AUTHOR: Jessie Frazelle <jess@linux.com>
# COMMENTS:
# This file describes how to build dunnet in a container with all
# dependencies installed.
# Tested on Debian Jessie
# USAGE:
# # Download dunnet Dockerfile
# wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/dunnet/Dockerfile
#
# # Build dunnet image
# docker build -t dunnet .
#
# docker run -it dunnet
#
# 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 dunnet
CMD ["/usr/bin/emacs", "-batch", "-l", "dunnet"]