blob: 83b853a81b268f805a0e7eeee4c1c5d06585f903 [file]
# =============================================================================
# OSI Website Development Dockerfile
# =============================================================================
# Extends the official Material for MkDocs image with additional plugins.
# See README.md for usage instructions.
#
# Base image docs: https://hub.docker.com/r/squidfunk/mkdocs-material/
# =============================================================================
FROM squidfunk/mkdocs-material
# Install the macros plugin, which enables reading YAML data from mkdocs.yml
# in templates via {{ config.extra.* }} variables.
RUN pip install --no-cache-dir \
mkdocs-macros-plugin \
"mkdocs-include-markdown-plugin[cache]"
# MkDocs dev server port
EXPOSE 8000