This commit is contained in:
Sebastian Fischlmayr 2024-02-16 09:01:27 +01:00
commit 9767c6bddc
22 changed files with 551 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM php:fpm
RUN apt-get update
RUN docker-php-ext-install pdo pdo_mysql
RUN docker-php-ext-enable pdo pdo_mysql
RUN pecl install xdebug
RUN docker-php-ext-enable xdebug
COPY ./php-extensions /usr/local/etc/php/conf.d/