Skip to content

Instantly share code, notes, and snippets.

@bizm
bizm / Dockerfile
Created October 31, 2023 12:20
PHP dockerfile with XDebug
FROM php:7.4-apache
RUN apt-get update && apt-get install -y \
libfreetype6-dev \
libjpeg62-turbo-dev \
libpng-dev \
vim \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd