dockerfiles/doctor/Dockerfile
Jess Frazelle c4ff0cf58c
cleanup maintainers
Signed-off-by: Jess Frazelle <me@jessfraz.com>
2016-09-19 15:25:05 -07:00

29 lines
817 B
Docker

# DESCRIPTION: Run text-based emacs doctor in a container
# AUTHOR: Jessie Frazelle <jess@linux.com>
# COMMENTS:
# This file describes how to build doctor in a container with all
# dependencies installed.
# Tested on Debian Jessie
# USAGE:
# # Download doctor Dockerfile
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/doctor/Dockerfile
#
# # Build doctor image
# docker build -t doctor .
#
# docker run -it jess/doctor
#
# Base docker image
FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.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
# Autorun doctor
CMD ["/usr/bin/emacs", "-f", "doctor"]