Compare commits
3 commits
6a405dce3c
...
d565f4d6b9
Author | SHA1 | Date | |
---|---|---|---|
d565f4d6b9 | |||
cebaf9b88a | |||
6048df20ba |
1 changed files with 6 additions and 7 deletions
13
Dockerfile
13
Dockerfile
|
@ -1,9 +1,8 @@
|
||||||
FROM python:3.12.1
|
FROM python:3.12.1-alpine3.19
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apk update && \
|
||||||
apt-get install -y emacs git && \
|
apk upgrade && \
|
||||||
apt-get autoclean && \
|
apk add --virtual .build-deps gcc python3-dev musl-dev linux-headers && \
|
||||||
pip install 'Nikola[extras]' && \
|
pip install 'Nikola[extras]' && \
|
||||||
pip install 'markdown' && \
|
apk del .build-deps && \
|
||||||
mkdir -p ~/.emacs.d/.local/straight/build && \
|
rm -vrf /var/cache/apk/*
|
||||||
git clone https://github.com/hniksic/emacs-htmlize.git ~/.emacs.d/.local/straight/build/htmlize
|
|
||||||
|
|
Loading…
Reference in a new issue