Build image
All checks were successful
Build and Publish Docker Image / docker (push) Successful in 31s

Signed-off-by: Basil Bruhn <basil.bruhn@psi.ch>
This commit is contained in:
2025-11-11 13:01:24 +01:00
parent e5f7e4c54f
commit a23728cc39
3 changed files with 43 additions and 1 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
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 rewrite