Restructured lektor project for simpler builds

This commit is contained in:
Reto Bollinger 2024-11-16 09:20:49 +01:00
parent 48d9be8d9a
commit 367b3fddc4
16 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
public/
lektor/lektordata/output/
.DS_Store

View file

@ -3,6 +3,8 @@ FROM debian:latest
RUN apt update
RUN apt install -y python3-pip python3-venv pipx
RUN pipx install lektor
RUN mkdir /opt/lektor
WORKDIR /opt/lektor
RUN mkdir -p /opt/lektor/project && mkdir -p /opt/lektor/output
WORKDIR /opt/lektor/project
ENV PATH="$PATH:/root/.local/bin"

View file

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB