mirror of
https://git.bolliret.ch/pcs/pcs-website
synced 2026-01-18 18:31:36 +01:00
8 lines
184 B
Docker
8 lines
184 B
Docker
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
|
|
ENV PATH="$PATH:/root/.local/bin"
|