Skip to content
Snippets Groups Projects
Select Git revision
  • 5b658874146d18c44e536e4c22d6ececdb576ca8
  • main default protected
  • v0.1.0
3 results

Dockerfile

Blame
  • Dockerfile 220 B
    FROM squidfunk/mkdocs-material as builder
    COPY docs /docs/docs
    COPY theme /docs/theme
    COPY mkdocs.yml /docs/
    RUN mkdocs build
    
    FROM nginx:stable-alpine
    COPY --from=builder /docs/site /usr/share/nginx/html/docs
    EXPOSE 80