homelab-docs/Dockerfile
Chris Cowley ee2ed84b6e
All checks were successful
/ build (push) Successful in 3m41s
Add notes to fix jellyfin and nextcloud admin
2024-10-23 10:31:27 +02:00

13 lines
202 B
Docker

FROM docker.io/squidfunk/mkdocs-material AS build
#RUN pip install mkdocs-glightbox
COPY . /docs/
RUN mkdocs build
FROM nginx:alpine
EXPOSE 80
COPY --from=build /docs/site/ /usr/share/nginx/html/