Tom Willemse
4b21a1b581
For my generated config I use ‘proper-list-p’, which is a function that is new in Emacs 27.1.
8 lines
360 B
Docker
8 lines
360 B
Docker
FROM silex/emacs:27.1-alpine-dev
|
|
|
|
RUN apk add bats sqlite yaml yaml-dev \
|
|
&& git clone git://github.com/syohex/emacs-libyaml.git \
|
|
&& make -C emacs-libyaml \
|
|
&& mkdir -p /usr/local/share/emacs/site-lisp/libyaml \
|
|
&& mv emacs-libyaml/libyaml-core.so emacs-libyaml/libyaml.el /usr/local/share/emacs/site-lisp/libyaml \
|
|
&& rm -r emacs-libyaml
|