2015-06-05 10:24:11 -07:00
|
|
|
# DESCRIPTION: Run text-based emacs doctor in a container
|
2016-09-19 15:25:05 -07:00
|
|
|
# AUTHOR: Jessie Frazelle <jess@linux.com>
|
2014-10-20 03:06:48 -07:00
|
|
|
# COMMENTS:
|
2015-06-05 10:24:11 -07:00
|
|
|
# This file describes how to build doctor in a container with all
|
2016-06-06 05:40:20 +02:00
|
|
|
# dependencies installed.
|
2015-06-05 10:24:11 -07:00
|
|
|
# Tested on Debian Jessie
|
2014-10-20 03:06:48 -07:00
|
|
|
# USAGE:
|
2015-06-05 10:24:11 -07:00
|
|
|
# # Download doctor Dockerfile
|
2016-10-25 13:37:56 -07:00
|
|
|
# wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/doctor/Dockerfile
|
2014-10-20 03:06:48 -07:00
|
|
|
#
|
2015-06-05 10:24:11 -07:00
|
|
|
# # Build doctor image
|
|
|
|
# docker build -t doctor .
|
2014-10-20 03:06:48 -07:00
|
|
|
#
|
2015-08-02 21:00:01 -04:00
|
|
|
# docker run -it jess/doctor
|
2014-10-20 03:06:48 -07:00
|
|
|
#
|
|
|
|
|
|
|
|
# Base docker image
|
2015-08-02 21:00:01 -04:00
|
|
|
FROM alpine:latest
|
2017-03-09 18:14:37 +00:00
|
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
2014-10-20 03:06:48 -07:00
|
|
|
|
2015-08-02 21:00:01 -04:00
|
|
|
# Install emacs:
|
2016-12-02 13:42:52 -08:00
|
|
|
# Note: Emacs is only 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 13:42:52 -08:00
|
|
|
--repository https://dl-3.alpinelinux.org/alpine/edge/community/ \
|
2016-06-06 05:40:20 +02:00
|
|
|
emacs
|
2014-10-20 03:06:48 -07:00
|
|
|
|
|
|
|
# Autorun doctor
|
|
|
|
CMD ["/usr/bin/emacs", "-f", "doctor"]
|