# Ubuntu
|
|
FROM ubuntu:latest
|
|
ENV UNAME="scientific-emacs"
|
|
MAINTAINER gmarxcc
|
|
LABEL version="0.1"
|
|
|
|
# installing emacs
|
|
RUN apt-get update \
|
|
&& apt-get install -y emacs
|
|
|