# Install Xdebug
RUN apk add --update --no-cache --virtual .tools-deps \
autoconf g++ libtool make \
&& (yes | pecl install xdebug) \
&& apk del .tools-deps \
&& rm -rf /var/cache/apk/*
Как учиться писать не говнокод?
<?php
$path = 'path/to/img.png';
$width = $height = 300;
$background = '#ffffff';
$plain = Image::canvas($width, $height);
$plain->fill($background);
$img = Image::make($path);
$img->resize($width, null, function ($constraint) {
$constraint->aspectRatio();
});
$plain->insert($img, 'center');
$plain->save('resized.png');