Compare commits
No commits in common. "d565f4d6b9314b248f1e89863e4907b40a8caba3" and "6a405dce3cbf8dcf40d10321c3d70c967663c723" have entirely different histories.
d565f4d6b9
...
6a405dce3c
1 changed files with 7 additions and 6 deletions
13
Dockerfile
13
Dockerfile
|
@ -1,8 +1,9 @@
|
|||
FROM python:3.12.1-alpine3.19
|
||||
FROM python:3.12.1
|
||||
|
||||
RUN apk update && \
|
||||
apk upgrade && \
|
||||
apk add --virtual .build-deps gcc python3-dev musl-dev linux-headers && \
|
||||
RUN apt-get update && \
|
||||
apt-get install -y emacs git && \
|
||||
apt-get autoclean && \
|
||||
pip install 'Nikola[extras]' && \
|
||||
apk del .build-deps && \
|
||||
rm -vrf /var/cache/apk/*
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue