2024-01-14 22:09:50 +00:00
|
|
|
FROM python:3.12.1
|
2020-02-17 23:06:25 +01:00
|
|
|
|
2020-08-31 22:45:29 +02:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y emacs git && \
|
|
|
|
apt-get autoclean && \
|
2022-06-04 14:44:23 +02:00
|
|
|
pip install 'Nikola[extras]' && \
|
2022-07-26 01:53:04 +02:00
|
|
|
pip install 'markdown==3.3' && \
|
2020-08-31 22:30:23 +02:00
|
|
|
mkdir -p ~/.emacs.d/.local/straight/build && \
|
|
|
|
git clone https://github.com/hniksic/emacs-htmlize.git ~/.emacs.d/.local/straight/build/htmlize
|