added first version of the subpages

This commit is contained in:
2022-04-20 23:23:25 +02:00
parent 844e3f3226
commit 117cba0e2c
6 changed files with 59 additions and 7 deletions

View File

@@ -1,7 +1,14 @@
FROM php:fpm
# update the image
RUN apt update && apt upgrade -y
# install pdo mysql extension
RUN docker-php-ext-install pdo pdo_mysql
# install xdebug for php
RUN pecl install xdebug && docker-php-ext-enable xdebug
RUN pecl install xdebug && docker-php-ext-enable xdebug
# install ldap module
RUN apt install -y libldap2-dev
RUN docker-php-ext-install ldap