spacemacs/.circleci/dockerfiles/Dockerfile.emacs26

28 lines
605 B
Docker
Raw Normal View History

FROM ubuntu:zesty
MAINTAINER JAremko <w3techplaygound@gmail.com>
COPY cleanup /usr/local/sbin/
# basic stuff
RUN echo 'APT::Get::Assume-Yes "true";' >> /etc/apt/apt.conf \
&& apt-get update && apt-get install \
bash \
ca-certificates \
curl \
git \
git \
gzip \
make \
openssl \
tar \
&& cleanup
# Emacs
RUN apt-get update && apt-get install software-properties-common \
&& apt-add-repository ppa:ubuntu-elisp/ppa \
&& apt-get update && apt-get install emacs-snapshot-nox \
# Cleanup
&& apt-get purge software-properties-common \
&& cleanup