docker: install php8-ldap in Docker images (#1914)

- fixes #1890
This commit is contained in:
nodiscc 2022-11-26 13:58:21 +00:00 committed by GitHub
parent 00cce1f8c7
commit f28b9d550e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -41,6 +41,7 @@ RUN apk --update --no-cache add \
php8-iconv \
php8-intl \
php8-json \
php8-ldap \
php8-mbstring \
php8-openssl \
php8-session \

View file

@ -12,7 +12,11 @@ RUN apk --update --no-cache add py3-pip \
# - Resolve PHP dependencies with Composer
FROM arm32v6/alpine:3.16 as composer
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 \
&& composer --prefer-dist --no-dev install
@ -42,6 +46,7 @@ RUN apk --update --no-cache add \
php8-iconv \
php8-intl \
php8-json \
php8-ldap \
php8-mbstring \
php8-openssl \
php8-session \