parent
00cce1f8c7
commit
f28b9d550e
2 changed files with 7 additions and 1 deletions
|
@ -41,6 +41,7 @@ RUN apk --update --no-cache add \
|
||||||
php8-iconv \
|
php8-iconv \
|
||||||
php8-intl \
|
php8-intl \
|
||||||
php8-json \
|
php8-json \
|
||||||
|
php8-ldap \
|
||||||
php8-mbstring \
|
php8-mbstring \
|
||||||
php8-openssl \
|
php8-openssl \
|
||||||
php8-session \
|
php8-session \
|
||||||
|
|
|
@ -12,7 +12,11 @@ RUN apk --update --no-cache add py3-pip \
|
||||||
# - Resolve PHP dependencies with Composer
|
# - Resolve PHP dependencies with Composer
|
||||||
FROM arm32v6/alpine:3.16 as composer
|
FROM arm32v6/alpine:3.16 as composer
|
||||||
COPY --from=docs /usr/src/app/shaarli /app/shaarli
|
COPY --from=docs /usr/src/app/shaarli /app/shaarli
|
||||||
RUN apk --update --no-cache add php8-curl php8-mbstring php8-simplexml composer \
|
RUN apk --update --no-cache add \
|
||||||
|
php8-curl \
|
||||||
|
php8-mbstring \
|
||||||
|
php8-simplexml \
|
||||||
|
composer \
|
||||||
&& cd /app/shaarli \
|
&& cd /app/shaarli \
|
||||||
&& composer --prefer-dist --no-dev install
|
&& composer --prefer-dist --no-dev install
|
||||||
|
|
||||||
|
@ -42,6 +46,7 @@ RUN apk --update --no-cache add \
|
||||||
php8-iconv \
|
php8-iconv \
|
||||||
php8-intl \
|
php8-intl \
|
||||||
php8-json \
|
php8-json \
|
||||||
|
php8-ldap \
|
||||||
php8-mbstring \
|
php8-mbstring \
|
||||||
php8-openssl \
|
php8-openssl \
|
||||||
php8-session \
|
php8-session \
|
||||||
|
|
Loading…
Reference in a new issue