Merge pull request #158 from martialblog/feature/ldapslibs

Add OS libraries for ldaps
This commit is contained in:
Markus Opolka
2023-07-11 08:29:11 +02:00
committed by GitHub
6 changed files with 20 additions and 2 deletions

View File

@@ -6,6 +6,8 @@ RUN set -ex; \
apt-get update; \ apt-get update; \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
netcat-openbsd \ netcat-openbsd \
libldap-common \
libsasl2-modules \
; \ ; \
\ \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \

View File

@@ -2,7 +2,12 @@ FROM docker.io/php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
# Install OS dependencies # Install OS dependencies
RUN apk add --no-cache netcat-openbsd bash RUN set -ex; \
apk add --no-cache \
netcat-openbsd \
libsasl \
libldap \
bash
# Install PHP Plugins # Install PHP Plugins
# hadolint ignore=SC2086 # hadolint ignore=SC2086

View File

@@ -6,6 +6,8 @@ RUN set -ex; \
apt-get update; \ apt-get update; \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
netcat-openbsd \ netcat-openbsd \
libldap-common \
libsasl2-modules \
; \ ; \
\ \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \

View File

@@ -6,6 +6,8 @@ RUN set -ex; \
apt-get update; \ apt-get update; \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
netcat-openbsd \ netcat-openbsd \
libldap-common \
libsasl2-modules \
; \ ; \
\ \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \

View File

@@ -2,7 +2,12 @@ FROM docker.io/php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
# Install OS dependencies # Install OS dependencies
RUN apk add --no-cache netcat-openbsd bash RUN set -ex; \
apk add --no-cache \
netcat-openbsd \
libsasl \
libldap \
bash
# Install PHP Plugins # Install PHP Plugins
# hadolint ignore=SC2086 # hadolint ignore=SC2086

View File

@@ -6,6 +6,8 @@ RUN set -ex; \
apt-get update; \ apt-get update; \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
netcat-openbsd \ netcat-openbsd \
libldap-common \
libsasl2-modules \
; \ ; \
\ \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \