Skip to content

Instantly share code, notes, and snippets.

View nimaamiri92's full-sized avatar

nima amiri nimaamiri92

View GitHub Profile
@nimaamiri92
nimaamiri92 / Dockerfile
Created November 8, 2021 16:30 — forked from Raistlfiren/Dockerfile
XDebug 3 and Docker Reference
FROM php:7.4-cli-alpine
# Install xdebug
RUN apk add --no-cache --virtual .phpize-deps $PHPIZE_DEPS \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug \
&& apk del .phpize-deps
WORKDIR /var/www/html