Skip to content

Commit

Permalink
fix missing sasl dependency (#1008)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Coutadeur committed Nov 21, 2024
1 parent f6ea74a commit c12a738
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packaging/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ ARG BUILD_DEPS=" \
libjpeg62-turbo-dev \
libwebp-dev \
libldap2-dev \
libsasl2-dev \
"
RUN --mount=type=cache,target=/var/lib/apt/lists \
set -ex; \
Expand All @@ -59,7 +60,7 @@ RUN --mount=type=cache,target=/var/lib/apt/lists \
\
docker-php-source extract; \
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
docker-php-ext-configure ldap --with-libdir=lib/$(uname -m)-linux-gnu/; \
docker-php-ext-configure ldap --with-ldap-sasl --with-libdir=lib/$(uname -m)-linux-gnu/; \
docker-php-ext-install -j "$(nproc)" \
bcmath \
bz2 \
Expand Down
2 changes: 2 additions & 0 deletions packaging/docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ RUN --mount=type=cache,target=/var/cache/apk \
libjpeg-turbo-dev \
libwebp-dev \
openldap-dev \
cyrus-sasl-dev \
argon2-dev \
coreutils \
curl-dev \
Expand Down Expand Up @@ -170,6 +171,7 @@ RUN --mount=type=cache,target=/var/cache/apk \
--enable-gd --with-freetype --with-jpeg --with-webp \
--with-bz2 \
--with-ldap \
--with-ldap-sasl \
--with-apxs2 \
; \
make -j "$(nproc)"; \
Expand Down

0 comments on commit c12a738

Please sign in to comment.