Files
python.softwareshinobi.com/Dockerfile
Software Shinobi 0e4be2e42c
Some checks reported warnings
learn org at code.softwareshinobi.com/python.softwareshinobi.com/pipeline/head This commit was not built
automated terminal push
2025-06-05 20:40:34 -04:00

14 lines
210 B
Docker

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