8 lines
304 B
Docker
8 lines
304 B
Docker
FROM python:3.9.2
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y emacs git && \
|
|
apt-get autoclean && \
|
|
pip install 'Nikola[extras]==8.1.3' && \
|
|
mkdir -p ~/.emacs.d/.local/straight/build && \
|
|
git clone https://github.com/hniksic/emacs-htmlize.git ~/.emacs.d/.local/straight/build/htmlize
|