diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-07-23 21:05:10 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-07-23 21:05:10 +0200 |
commit | c909f5d5cc4349c208d65c3548e3f7d1554b4838 (patch) | |
tree | 75e247e2457c8d6e1a3f7f947cf62591ade07e7c /Dockerfile | |
parent | 78c2f122e067f8bab62deb7ef758708721f4a9ba (diff) | |
download | Shaarli-c909f5d5cc4349c208d65c3548e3f7d1554b4838.tar.gz Shaarli-c909f5d5cc4349c208d65c3548e3f7d1554b4838.tar.zst Shaarli-c909f5d5cc4349c208d65c3548e3f7d1554b4838.zip |
Fix Docker build: gcc is no longer included in python alpine image
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ | |||
4 | FROM python:3-alpine as docs | 4 | FROM python:3-alpine as docs |
5 | ADD . /usr/src/app/shaarli | 5 | ADD . /usr/src/app/shaarli |
6 | RUN cd /usr/src/app/shaarli \ | 6 | RUN cd /usr/src/app/shaarli \ |
7 | && apk add --no-cache gcc musl-dev \ | ||
7 | && pip install --no-cache-dir mkdocs \ | 8 | && pip install --no-cache-dir mkdocs \ |
8 | && mkdocs build --clean | 9 | && mkdocs build --clean |
9 | 10 | ||