16 lines
282 B
Docker
16 lines
282 B
Docker
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" ] |