X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Dockerfile.armhf;fp=Dockerfile.armhf;h=d1bf64d571c7b4476798554304fac40293bf73fa;hb=e14d47cc55bdceb4c5ecd43ddf2cdcfa6dadc87b;hp=1185e2df6d800656cf96c4d32fde2698f438fdf7;hpb=86aa2486541660a78ab3e347ba12e25aae232b7c;p=github%2Fshaarli%2FShaarli.git diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 1185e2df..d1bf64d5 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -3,7 +3,7 @@ # - Build documentation FROM arm32v6/alpine:3.8 as docs ADD . /usr/src/app/shaarli -RUN apk --update --no-cache add py2-pip \ +RUN apk --update --no-cache add py2-pip \ && cd /usr/src/app/shaarli \ && pip install --no-cache-dir mkdocs \ && mkdocs build --clean @@ -12,7 +12,7 @@ RUN apk --update --no-cache add py2-pip \ # - Resolve PHP dependencies with Composer FROM arm32v6/alpine:3.8 as composer COPY --from=docs /usr/src/app/shaarli /app/shaarli -RUN apk --update --no-cache add php7-mbstring composer \ +RUN apk --update --no-cache add php7-curl php7-mbstring composer \ && cd /app/shaarli \ && composer --prefer-dist --no-dev install @@ -36,7 +36,6 @@ RUN apk --update --no-cache add \ nginx \ php7 \ php7-ctype \ - php7-curl \ php7-fpm \ php7-gd \ php7-iconv \