Hi!
Is it possible to install php extensions within a whole pipeline?
- name: Install PHP Extensions
image: alpine
commands:
- apk add php-pdo_mysql php-pdo_pgsql php php-gd --no-cache
Works, however only during this step as the files are not shared
And when executing this inside a PHP image, it obviously does not have the alpine environment so that wont work either.