diff --git a/Dockerfile b/Dockerfile index e29fde34b0e4887255d8ac49ac6f64ed9b3b345e..0f6ae24b1b9b927f558765c9604a2f862a844b6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,17 @@ -FROM python:3.6.8-alpine3.9 as builder +FROM python:3.8.3-slim as builder # Set build directory WORKDIR /app +# RUN pip install mkdocs && pip install mkdocs-material && pip install plantuml-markdown COPY requirements.txt . + RUN pip install -r requirements.txt # add the current directory to the container as /app ADD . /app -# Perform build and cleanup artifacts -# RUN pip install mkdocs && pip install mkdocs-material && pip install plantuml-markdown - # build the documentation site RUN mkdocs build diff --git a/docs/features/index.md b/docs/features/index.md deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/mkdocs.yml b/mkdocs.yml index 81ed27fd48a608d230422fa8eafdaf282feb67b6..8efa4efe98c69e0180648ac8b4e0baec4b58847f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -41,9 +41,11 @@ nav: - Credits: components/custom-apps/web-app/credits.md - Static pages: components/custom-apps/web-app/static-pages.md - Dataset: + - Details: components/custom-apps/web-app/dataset/dataset-detail.md - Data: components/custom-apps/web-app/dataset/data.md - Information: components/custom-apps/web-app/dataset/info.md - - API & Downloads: components/custom-apps/web-app/dataset/resources.md + - API: components/custom-apps/web-app/dataset/api.md + - Downloads: components/custom-apps/web-app/dataset/downloads.md - Header: components/custom-apps/web-app/header.md - Footer: components/custom-apps/web-app/footer.md - Drafts: components/custom-apps/web-app/drafts.md