Files
linux.softwareshinobi.com/landing/Dockerfile
2025-03-14 16:35:47 -04:00

16 lines
247 B
Docker

FROM titom73/mkdocs AS MKDOCS_BUILD
RUN pip install markupsafe==2.0.1
RUN pip install mkdocs-blog-plugin
WORKDIR /docs
COPY . .
RUN mkdocs build
FROM mengzyou/bbhttpd:1.35
COPY --from=MKDOCS_BUILD --chown=www:www /docs/site /home/www/html