Initialisation depot

This commit is contained in:
Serge NOEL
2026-02-10 12:12:11 +01:00
commit c3176e8d79
818 changed files with 52573 additions and 0 deletions

23
Wiki-print/Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM python:3.11-slim
WORKDIR /app
# Install pandoc, wget, and Poetry (SVG support is native in pandoc/LibreOffice)
RUN apt-get update \
&& apt-get install -y pandoc wget \
&& pip install poetry \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY pyproject.toml ./
RUN poetry install --no-root
COPY main.py ./
VOLUME /app/data
CMD ["poetry", "run", "python", "main.py"]