spacemacs/.circleci/dockerfiles/Dockerfile.emacs24
JAremko f0bc44738d Add new Docker files for CI
[tools&CI] Add arg -Q to Emacs calls where it is appropriate
2017-08-31 19:12:45 +03:00

24 lines
419 B
Docker

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 emacs24-nox \
&& cleanup