www/builder/Dockerfile

16 lines
282 B
Docker
Raw Permalink Normal View History

2024-12-07 01:06:33 +00:00
FROM python:3.13-slim-bookworm
RUN \
apt update && \
apt install -y --no-install-recommends \
ca-certificates \
git \
libcairo2 && \
pip install \
mkdocs \
mkdocs-material \
mkdocs-material[imaging]
COPY build.sh /build.sh
ENTRYPOINT [ "/build.sh" ]