This commit is contained in:
2026-07-13 12:30:05 +08:00
parent 7d61aadc5d
commit f25e128299
2023 changed files with 9042 additions and 922 deletions
+12 -2
View File
@@ -1,9 +1,19 @@
FROM squidfunk/mkdocs-material AS builder
FROM zensical/zensical:latest AS builder
ENV PYTHONPATH=/docs
COPY . /docs
RUN mkdocs build
RUN zensical build --clean
FROM nginx:alpine AS iptv-docs
LABEL org.opencontainers.image.title="IPTV Checker"
LABEL org.opencontainers.image.description="Documentation for our services and products"
LABEL org.opencontainers.image.authors="Anthony Axenov <anthonyaxenov@gmail.com>"
LABEL org.opencontainers.image.url="https://m3u.su"
LABEL org.opencontainers.image.vendor="Anthony Axenov"
LABEL org.opencontainers.image.documentation="https://m3u.su/docs"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.source="https://git.axenov.dev/IPTV/docs"
COPY --from=builder /docs/site /usr/share/nginx/html
WORKDIR /usr/share/nginx/html
USER root