-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update PHP7 version for OSS benchmarks images. #234
Conversation
paulosjca
commented
Nov 8, 2021
•
edited
Loading
edited
- Updates PHP7 image versions from php7.2.22-buster to php7.2.34-buster (latest is 7.4.25).
- Updates gpg2 invocation to exclude unused key and remove hardcoded key server specification.
- Proposed as an alternative to Cache RVM build keys to reduce flakiness. #233.
apt-get clean | ||
|
||
# Install rvm | ||
RUN apt-get update && apt-get install -y gnupg2 && apt-get clean | ||
RUN gpg2 --keyserver keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB | ||
RUN gpg2 --recv-keys 7D2BAF1CF37B13E2069D6956105BD0E739499BDB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This modification would make gpg2 request embedded key server for public key?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes this is the same as what happens for interop.
I propose to merge this PR and, if flakiness should reoccur, move to #233. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks for the fix. I'm wondering if this is actually going to help though. I guess we will see soon enough.