Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-08-15 18:48:40 -07:00
parent e9d714708a
commit 112ba4b33f

View File

@ -21,8 +21,10 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
# Install emacs:
# Note: Eamcs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
RUN apk update && apk add emacs --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted
RUN apk update && apk add \
emacs \
--update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
&& rm -rf /var/cache/apk/*
# Autorun doctor
CMD ["/usr/bin/emacs", "-f", "doctor"]