2015-06-05 19:24:11 +02:00
|
|
|
# DESCRIPTION: Run text-based emacs doctor in a container
|
2016-09-20 00:25:05 +02:00
|
|
|
# AUTHOR: Jessie Frazelle <jess@linux.com>
|
2014-10-20 12:06:48 +02:00
|
|
|
# COMMENTS:
|
2015-06-05 19:24:11 +02: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 19:24:11 +02:00
|
|
|
# Tested on Debian Jessie
|
2014-10-20 12:06:48 +02:00
|
|
|
# USAGE:
|
2015-06-05 19:24:11 +02:00
|
|
|
# # Download doctor Dockerfile
|
2016-10-25 22:37:56 +02:00
|
|
|
# wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/doctor/Dockerfile
|
2014-10-20 12:06:48 +02:00
|
|
|
#
|
2015-06-05 19:24:11 +02:00
|
|
|
# # Build doctor image
|
|
|
|
# docker build -t doctor .
|
2014-10-20 12:06:48 +02:00
|
|
|
#
|
2015-08-03 03:00:01 +02:00
|
|
|
# docker run -it jess/doctor
|
2014-10-20 12:06:48 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
# Base docker image
|
2015-08-03 03:00:01 +02:00
|
|
|
FROM alpine:latest
|
2017-03-09 19:14:37 +01:00
|
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
2014-10-20 12:06:48 +02:00
|
|
|
|
2015-08-03 03:00:01 +02:00
|
|
|
# Install emacs:
|
2016-12-02 22:42:52 +01: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 \
|
2018-11-29 22:49:49 +01:00
|
|
|
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
|
2016-06-06 05:40:20 +02:00
|
|
|
emacs
|
2014-10-20 12:06:48 +02:00
|
|
|
|
|
|
|
# Autorun doctor
|
|
|
|
CMD ["/usr/bin/emacs", "-f", "doctor"]
|