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