documentation server and /doc route

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn
2025-01-16 07:46:27 +03:00
parent 5fb3c03e40
commit e87764a4c2
40 changed files with 1313 additions and 301 deletions

13
doc/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM ghcr.io/ngn13/ctorm:1.7
WORKDIR /doc
COPY Makefile ./
COPY docs ./docs
COPY inc ./inc
COPY src ./src
EXPOSE 7003
RUN make
ENTRYPOINT ["/doc/doc.elf"]