Merge pull request #1508 from ArthurHoaro/fix/docker-build-gcc

Fix Docker build: gcc is no longer included in python alpine image
This commit is contained in:
ArthurHoaro 2020-07-23 21:10:47 +02:00 committed by GitHub
commit b8e3630f2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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