-
Notifications
You must be signed in to change notification settings - Fork 472
Use Debian Jessie as base image for Java 8 #40
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
Conversation
docker-library/official-images#762 might help 😉 |
🤘 |
@tianon Any chance you're thinking of doubling the number of tags on |
Kind of wanting to avoid going _that_ crazy. 😢
|
Then I'm thinking that |
I meant for "update.sh" -- it could assume that if
"debian:<suite>-backports" exists, it should scrape package version numbers
off that image instead of "buildpack-deps:<suite>".
|
or "if grep -q '-backports' Dockerfile"
|
@tianon Good idea. That seems preferable to bloating the number of |
Pushed 6e8a2bf to update the |
LGTM |
1 similar comment
LGTM |
Use Debian Jessie as base image for Java 8
While switching from |
@Godin After reading through Debian issue 812708, it looks like the issue is that a number of 1024 bit certificates were removed from the It seems that these certificates were used to sign a number of other CA certificates that are still part of Since Debian The fix is to add the two removed certificates back. You should be able to get them from an older version of the More information about the 1024 bit CA removal can be found here: https://blog.mozilla.org/security/2015/01/28/phase-2-phasing-out-certificates-with-1024-bit-rsa-keys/ |
This PR uses jessie-backports to get OpenJDK 8 under Debian Jessie.
I haven't yet made the necessary updates to
update.sh
since it's a bit tricky. Thedocker run
statement that's used to checkapt-cache show
will need to conditionally add a Apt source list forjessie-backports
. I could make it work, but it's going to be a hack.