Select Git revision
Janne Mareike Koschinski authored
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