homelab-docs/Dockerfile

14 lines
202 B
Text
Raw Permalink Normal View History

2024-10-03 16:07:44 +02:00
FROM docker.io/squidfunk/mkdocs-material AS build
2024-10-03 14:03:46 +02:00
2024-10-03 16:07:44 +02:00
#RUN pip install mkdocs-glightbox
COPY . /docs/
RUN mkdocs build
2024-10-04 09:50:25 +02:00
FROM nginx:alpine
2024-10-03 16:07:44 +02:00
EXPOSE 80
2024-10-03 16:07:44 +02:00
COPY --from=build /docs/site/ /usr/share/nginx/html/