Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ensure that sqlsrv is installed correctly
The 5.10.0 release does NOT include support for PHP 7.3, which caused the install_sqlsrv.sh to fail. However, because we did not have a `set -e` directive associated with the `RUN` declaration that invokes the script, the container built without errors. This patch does two things: - Switches to the 5.9.0 release for installing the sqlsrv extension for PHP 7.3. - Adds a `set -e` directive to the `RUN` line that installs static extensions. Signed-off-by: Matthew Weier O'Phinney <[email protected]>
- Loading branch information