From d94c8bce53d77e4311d8fdb3f97ccc572b982670 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20M=C3=B6hlmann?= Date: Mon, 21 Oct 2019 15:18:53 +0300 Subject: [PATCH] Docs: treat warnings as errors --- docs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index b3257a80..70c9c3c4 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -14,7 +14,7 @@ COPY ./nginx.conf /etc/nginx/conf.d/default.conf COPY . /docs RUN mkdir -p /build/$VERSION \ - && sphinx-build /docs /build/$VERSION + && sphinx-build -W /docs /build/$VERSION EXPOSE 80/tcp