This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
spacemacs/.circleci/dockerfiles/Dockerfile.emacs24
2017-09-24 21:42:11 +03:00

35 lines
684 B
Text

### Dockerfile --- Dockerfile for CircleCI with Emacs24.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 \
git \
gzip \
jq \
make \
openssl \
tar \
&& cleanup
# Emacs
RUN apt-get update && apt-get install emacs24-nox \
&& cleanup