From 51c1ecbb47397e185b131a1608c3dad59b507e23 Mon Sep 17 00:00:00 2001
From: Hugo <hnouts@grandlyon.com>
Date: Tue, 27 Oct 2020 14:49:16 +0100
Subject: [PATCH] fix mkdocs-material

https://github.com/squidfunk/mkdocs-material/commit/5b1dcacd37f62cf79cd7ee8deefff22050697535
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 8720026..d533af0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,7 +7,7 @@ WORKDIR /app
 # 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
+RUN apk add --no-cache --virtual .build gcc musl-dev && pip install mkdocs && pip install mkdocs-material && pip install plantuml-markdown && apk del .build gcc musl-dev
 
 # build the documentation site
 RUN mkdocs build
-- 
GitLab