diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-06-25 13:58:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 13:58:32 +0200 |
commit | e1231265bc46b070a4edd573c417aa030fe83426 (patch) | |
tree | d8a034751a04f9376064e253304b6658a901c566 | |
parent | 8f80821820e4024c899d762efb0d2ab3426afc6c (diff) | |
parent | c0d750b9e57546055804020fc2949dbce0dd4a5c (diff) | |
download | Shaarli-e1231265bc46b070a4edd573c417aa030fe83426.tar.gz Shaarli-e1231265bc46b070a4edd573c417aa030fe83426.tar.zst Shaarli-e1231265bc46b070a4edd573c417aa030fe83426.zip |
Merge pull request #1476 from tyjak/master
Fix missing php7-simplexml plugin for Dockerfile.armhf
-rw-r--r-- | Dockerfile.armhf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.armhf b/Dockerfile.armhf index b75663bb..5bbf6680 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf | |||
@@ -12,7 +12,7 @@ RUN apk --update --no-cache add py2-pip \ | |||
12 | # - Resolve PHP dependencies with Composer | 12 | # - Resolve PHP dependencies with Composer |
13 | FROM arm32v6/alpine:3.8 as composer | 13 | FROM arm32v6/alpine:3.8 as composer |
14 | COPY --from=docs /usr/src/app/shaarli /app/shaarli | 14 | COPY --from=docs /usr/src/app/shaarli /app/shaarli |
15 | RUN apk --update --no-cache add php7-curl php7-mbstring composer \ | 15 | RUN apk --update --no-cache add php7-curl php7-mbstring php7-simplexml composer \ |
16 | && cd /app/shaarli \ | 16 | && cd /app/shaarli \ |
17 | && composer --prefer-dist --no-dev install | 17 | && composer --prefer-dist --no-dev install |
18 | 18 | ||