From 27d2d86736b34b3214bfb29c44b1567c5a6817f2 Mon Sep 17 00:00:00 2001 From: FORESTIER Fabien <fabien.forestier@soprasteria.com> Date: Mon, 18 May 2020 13:19:47 +0200 Subject: [PATCH] Use newer version of python --- Dockerfile | 7 +++---- docs/features/index.md | 0 mkdocs.yml | 4 +++- 3 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 docs/features/index.md diff --git a/Dockerfile b/Dockerfile index e29fde3..0f6ae24 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 e69de29..0000000 diff --git a/mkdocs.yml b/mkdocs.yml index 81ed27f..8efa4ef 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 -- GitLab