Files
bruhn_b b1dd94ce23
Build and Publish Docker Image / docker (push) Successful in 55s
bake in mysql client
2026-02-24 14:11:28 +01:00

21 lines
358 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 \
default-mysql-client \
libonig-dev \
libzip-dev \
&& rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-install ldap mysqli pdo pdo_mysql
# Enable CGI module
RUN a2enmod cgi headers rewrite include