19 lines
285 B
Docker
19 lines
285 B
Docker
FROM php:8.2-apache
|
|
|
|
# Install dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
bc \
|
|
gawk \
|
|
sed \
|
|
bash \
|
|
perl \
|
|
libcgi-pm-perl \
|
|
libldap2-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN docker-php-ext-install ldap
|
|
|
|
# Enable CGI module
|
|
RUN a2enmod cgi headers rewrite include
|
|
|