2015-06-05 19:24:11 +02:00
|
|
|
# DESCRIPTION: Run text-based game dunnet in a container
|
2016-09-20 00:25:05 +02:00
|
|
|
# AUTHOR: Jessie Frazelle <jess@linux.com>
|
2014-10-20 10:20:26 +02:00
|
|
|
# COMMENTS:
|
2015-06-05 19:24:11 +02:00
|
|
|
# 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:
|
2015-06-05 19:24:11 +02:00
|
|
|
# # Download dunnet Dockerfile
|
2016-10-25 22:37:56 +02:00
|
|
|
# wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/dunnet/Dockerfile
|
2014-10-20 10:20:26 +02:00
|
|
|
#
|
2015-06-05 19:24:11 +02:00
|
|
|
# # Build dunnet image
|
|
|
|
# docker build -t dunnet .
|
2014-10-20 10:20:26 +02:00
|
|
|
#
|
2015-06-05 19:24:11 +02:00
|
|
|
# docker run -it dunnet
|
2014-10-20 10:20:26 +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 10:20:26 +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 \
|
2016-12-02 22:42:52 +01:00
|
|
|
--repository https://dl-3.alpinelinux.org/alpine/edge/community/ \
|
2016-06-06 05:40:20 +02:00
|
|
|
emacs
|
2014-10-20 10:20:26 +02:00
|
|
|
|
|
|
|
# Autorun dunnet
|
|
|
|
CMD ["/usr/bin/emacs", "-batch", "-l", "dunnet"]
|