9 lines
179 B
Docker
9 lines
179 B
Docker
FROM squidfunk/mkdocs-material:latest
|
|
|
|
# Alpine-Pakete für WeasyPrint
|
|
RUN apk add --no-cache \
|
|
weasyprint
|
|
|
|
# Plugin installieren
|
|
RUN pip install --no-cache-dir mkdocs-to-pdf
|