From: ArthurHoaro Date: Thu, 23 Jul 2020 19:10:47 +0000 (+0200) Subject: Merge pull request #1508 from ArthurHoaro/fix/docker-build-gcc X-Git-Tag: v0.12.0-beta~5 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=b8e3630f2ecd142d397b1b062a346a667bb78595;hp=2a891ca6b19b021550ebb9b9fb610d0c4baf82c4;p=github%2Fshaarli%2FShaarli.git Merge pull request #1508 from ArthurHoaro/fix/docker-build-gcc 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