Files
php-apache/Dockerfile
T
ebner 5dbf0c90e8
Build and Publish Docker Image / docker (push) Successful in 21s
test3
2026-01-21 15:53:17 +01:00

18 lines
253 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/*
# Enable CGI module
RUN a2enmod cgi headers rewrite include