Add PHP Dependencies
Compare changes
+ 3
− 1
@@ -12,9 +12,11 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
On Saturday, August 16 from 8:00 AM to 9:00 AM, we will be performing an upgrade of the GitLab system. During that time, GitLab and git services on git.unl.edu may be unavailable.
Adds PHP dependencies to bring the Unit Test images more inline with the extensions present on our LAMP stack.
$BUILD_DEPS
unfortunately cannot be removed as the PHP extensions are dynamically not statically linked and need the libraries at runtime.
> ldd /usr/local/lib/php/extensions/no-debug-non-zts-20200930/bz2.so
/lib/ld-musl-x86_64.so.1 (0x7febab0d1000)
libbz2.so.1 => /usr/lib/libbz2.so.1 (0x7febab0ba000) <== This is part of bzip2-dev
libc.musl-x86_64.so.1 => /lib/ld-musl-x86_64.so.1 (0x7febab0d1000)
This mostly resolves #17 (closed). There may be some apps that need special extensions, and we may eventually need to re-visit this, but this should resolve all current issues.