### Dockerfile --- Dockerfile for CircleCI with Emacs25.x
##
## Copyright (c) 2012-2017 Sylvain Benner & Contributors
## Author: Eugene "JAremko" Yaremenko <w3techplayground@gmail.com>
## This file is not part of GNU Emacs.
### License: GPLv3
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 \
gzip \
jq \
make \
openssl \
tar \
&& cleanup
# Emacs
RUN apt-get update && apt-get install emacs25-nox \