Draft
Conversation
Contributor
Author
There was a problem hiding this comment.
Pull request overview
Updates the PHP Docker image build to add OpenSSL dependencies and constrain the installed PECL redis extension version to avoid problematic upstream releases.
Changes:
- Add
libssl-devandopensslpackages to the base build dependencies. - Change PECL redis installation from unpinned
redisto a constrained specifier ("redis<6.1").
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| libicu-dev \ | ||
| libjpeg62-turbo-dev \ | ||
| libpng-dev \ | ||
| libssl-dev \ |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Contributor
Which compatibility issues? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the
Dockerfileto improve compatibility and address dependency requirements. The most notable changes are the addition of new system libraries and a version constraint on a PHP extension.Dependency updates:
libssl-devandopensslto the list of system packages to ensure proper SSL support in the build environment.redisPHP extension installation to explicitly require a version less than 6.1, likely to avoid compatibility issues with newer versions.