You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 weeks ago | |
---|---|---|
alpine | 4 years ago | |
amzn | 1 year ago | |
debian | 4 weeks ago | |
git | 4 years ago | |
.dockerignore | 1 year ago | |
.gitignore | 1 year ago | |
Jenkinsfile | 3 months ago | |
LICENSE | 1 year ago | |
README.md | 1 year ago |
README.md
emacs-docker
Builds both the latest version from master
in the repo, and looks for the newest tag (release) and builds that. Builds are packaged as .deb
and .tar.gz
and then publishe a docker image to Docker Hub with emacs installed.
The latest
tag follows the master branch builds.
docker run --rm -it benediktkr/emacs:27.1
docker run --rm -it benedikt/emacs:latest
The .deb
packages are uploaded to apt.sudo.is.
wget -q -O - https://apt.sudo.is/KEY.gpg | sudo apt-key add -
echo "deb https://apt.sudo.is/ /" > /etc/apt/sources.list.d/apt.sudo.is.list
apt-get update
apt-get install emacs
Dockerfiles for other docker images:
git/Dockerfile
: clone the emacs repo with git and build emacs.amzn/Dockerfile
: custom Amazon Linux 1 docker buildalpine/Dockerfile
: alpine has up-to-date emacs versions.