Merge pull request #1476 from tyjak/master

Fix missing php7-simplexml plugin for Dockerfile.armhf
This commit is contained in:
ArthurHoaro 2020-06-25 13:58:32 +02:00 committed by GitHub
commit e1231265bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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-curl php7-mbstring composer \
RUN apk --update --no-cache add php7-curl php7-mbstring php7-simplexml composer \
&& cd /app/shaarli \
&& composer --prefer-dist --no-dev install