summaryrefslogtreecommitdiffstats
path: root/Dockerfile.docs
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2020-04-17 12:27:48 +1000
committerGitHub <noreply@github.com>2020-04-17 12:27:48 +1000
commitf1045ebccf7b8fa5031aaf72932d516aa6453aa0 (patch)
treeb2c4992a558d7db720f0cc9fbeee5e64858b3cfa /Dockerfile.docs
parentd21d610cc75f5efc60b8539655724173715ed262 (diff)
Fix docs Docker-based builde riamge (#8718)
Diffstat (limited to 'Dockerfile.docs')
-rw-r--r--Dockerfile.docs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile.docs b/Dockerfile.docs
index c77dbe707e..5eea264a72 100644
--- a/Dockerfile.docs
+++ b/Dockerfile.docs
@@ -15,6 +15,9 @@ RUN apk add --no-cache -U git
# The scripts also use GNU find options
RUN apk add --no-cache -U findutils
+# (20200415) Some Python dependnecy now requires gcc as part of its build step.
+RUN apk add --no-cache -U build-base
+
# Copy and Install build dependencies first to cache them so we don't have to
# do this every single time we want to rebuild the docs. The cache is busted
# when/if the SHA of the requirements.txt is changed.