mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
7eea00edf3
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
29 lines
828 B
Docker
29 lines
828 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 https://raw.githubusercontent.com/jessfraz/dockerfiles/master/doctor/Dockerfile
|
|
#
|
|
# # Build doctor image
|
|
# docker build -t doctor .
|
|
#
|
|
# docker run -it jess/doctor
|
|
#
|
|
|
|
# Base docker image
|
|
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
# Install emacs:
|
|
# Note: Emacs is only community repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
|
|
RUN apk --no-cache add \
|
|
--repository https://dl-3.alpinelinux.org/alpine/edge/community/ \
|
|
emacs
|
|
|
|
# Autorun doctor
|
|
CMD ["/usr/bin/emacs", "-f", "doctor"]
|