|
|
@ -0,0 +1,16 @@ |
|
|
|
FROM ubuntu:16.04 |
|
|
|
RUN apt-get update && \ |
|
|
|
apt-get install -y curl git python ruby |
|
|
|
|
|
|
|
# Install evm |
|
|
|
RUN curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash |
|
|
|
ENV PATH /root/.evm/bin:$PATH |
|
|
|
|
|
|
|
# Install Emacs 25.1 |
|
|
|
RUN evm config path /tmp |
|
|
|
RUN evm install emacs-25.1-travis --use --skip |
|
|
|
RUN emacs --version |
|
|
|
|
|
|
|
# Install cask |
|
|
|
RUN curl -fsSL https://raw.githubusercontent.com/cask/cask/master/go | python |
|
|
|
ENV PATH /root/.cask/bin:$PATH |