From 2bdcb78600b03043f50eabc0981a5b7aec527403 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Mon, 20 Oct 2014 03:06:48 -0700 Subject: [PATCH] doctor --- doctor/Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 doctor/Dockerfile diff --git a/doctor/Dockerfile b/doctor/Dockerfile new file mode 100644 index 0000000..d2e4188 --- /dev/null +++ b/doctor/Dockerfile @@ -0,0 +1,30 @@ +# VERSION: 0.1 +# DESCRIPTION: Run text-based emacs doctor in a container +# AUTHOR: Jessica Frazelle +# 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 doctor +# + +DOCKER-VERSION 1.3 + +# Base docker image +FROM debian:jessie +MAINTAINER Jessica Frazelle + +# Install emacs +RUN apt-get update && apt-get install -y \ + emacs \ + --no-install-recommends + +# Autorun doctor +CMD ["/usr/bin/emacs", "-f", "doctor"]