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.
ben/emacs-docker/pipeline/head This commit looks good
Details
|
2 months ago | |
---|---|---|
alpine | 5 years ago | |
amzn | 2 years ago | |
debian | 2 months ago | |
git | 5 years ago | |
.dockerignore | 2 years ago | |
.gitignore | 2 years ago | |
Jenkinsfile | 3 months ago | |
LICENSE | 2 years ago | |
README.md | 6 months ago |
README.md
emacs-docker
Builds both the latest version from master
in the repo (called
nightly
here), and looks for the newest tag (release) and builds
that.
Builds are packaged as .deb
and .tar.gz
, and are also published as
docker images:
emacs:latest
: the latest stable buildemacs-nightly:latest
: the latest nightly build, built from themaster
branch of the upstream emacs repo
# to get the latest stable version
docker run --rm -it git.sudo.is/ben/emacs:latest
# to get the latest nightly build
docker run --rm -it git.sudo.is/ben/emacs-nightly:latest
The docker images are also pushed to dockerhub:
docker pull benediktkr/emacs:latest
docker pull benediktkr/emacs-nightly: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.