Files
php-apache/Dockerfile
Basil Bruhn 289c3f9f2e
All checks were successful
Build and Publish Docker Image / docker (push) Successful in 7s
RUN a2enmod cgi rewrite
Signed-off-by: Basil Bruhn <basil.bruhn@psi.ch>
2025-11-11 15:02:54 +01:00

14 lines
210 B
Docker

FROM php:8.2-apache
# Install dependencies
RUN apt-get update && apt-get install -y \
bc \
gawk \
sed \
bash \
&& rm -rf /var/lib/apt/lists/*
# Enable CGI module
RUN a2enmod cgi headers rewrite include