From: ArthurHoaro Date: Thu, 23 Jul 2020 19:05:10 +0000 (+0200) Subject: Fix Docker build: gcc is no longer included in python alpine image X-Git-Tag: v0.12.0-beta~5^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=c909f5d5cc4349c208d65c3548e3f7d1554b4838;hp=78c2f122e067f8bab62deb7ef758708721f4a9ba;p=github%2Fshaarli%2FShaarli.git Fix Docker build: gcc is no longer included in python alpine image --- diff --git a/Dockerfile b/Dockerfile index f05cf3a4..e2ff71fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ FROM python:3-alpine as docs ADD . /usr/src/app/shaarli RUN cd /usr/src/app/shaarli \ + && apk add --no-cache gcc musl-dev \ && pip install --no-cache-dir mkdocs \ && mkdocs build --clean