thecodingmachine / docker-images-php

A set of PHP Docker images
MIT License
768 stars 137 forks source link

added excimer extension #378

Closed JeremyGreaux closed 4 months ago

JeremyGreaux commented 5 months ago

Summary

This PR fixes/implements :

Excimer is mandatory to use Sentry profiling

Checklist

adrienbrault commented 4 months ago

Hey, I also need this extension to use Sentry's profiling.

Here's how I'm installing it for now:

FROM thecodingmachine/php:8.3-v4-cli

USER root
RUN PECL_EXTENSION=excimer /usr/local/lib/thecodingmachine-php/extensions/core/docker-install.sh
USER docker

ENV PHP_EXTENSIONS="excimer"
mistraloz commented 4 months ago

Good motivation, thx for your PR :)