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