add docs and config in container, refactor dockerfile and pipline

This commit is contained in:
2026-07-11 17:57:58 +03:00
parent 8eae5f1a10
commit f8a3fc4cd3
6 changed files with 97 additions and 7 deletions
+2
View File
@@ -7,6 +7,8 @@ RUN apk add --update --no-cache --virtual .build-deps gcc musl-dev &&\
apk del .build-deps &&\
rm ./requirements.txt
WORKDIR /mkdocs
COPY mkdocs.yml /mkdocs/mkdocs.yml
COPY docs/* /mkdocs/docs/
CMD ["mkdocs", "serve", "-a", "0.0.0.0:8000"]