This commit is contained in:
2021-11-30 18:02:29 -03:00
parent 1e3018b6b3
commit 0e1d02e5b7
5 changed files with 2033 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM php:8-fpm
RUN apt-get update -y && apt-get install -y zip libzip-dev git
RUN docker-php-ext-install pdo pdo_mysql zip
RUN pecl install xdebug-3.1.1 \
&& docker-php-ext-enable xdebug
WORKDIR /code
COPY --from=composer /usr/bin/composer /usr/bin/composer