Files
php-apache/Dockerfile
T
ebner c57e00e7fb
Build and Publish Docker Image / docker (push) Failing after 10s
fix?
2026-01-21 15:50:58 +01:00

20 lines
319 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 \
&& docker-php-ext-install ldap \
&& rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-install ldap
# Enable CGI module
RUN a2enmod cgi headers rewrite include