-
Notifications
You must be signed in to change notification settings - Fork 45
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
Use Chainguard's Wolfi base image by default #927
Conversation
This PR uses `cgr.dev/chainguard/wolfi-base:latest` as the default base image for all CPU architectures, not only for ARM, since it is multi-platform and a bit smaller than `frolvlad/alpine-glibc`
@@ -16,3 +16,7 @@ datasources: | |||
# driverClassName: org.postgresql.Driver | |||
# schema-generate: CREATE_DROP | |||
# dialect: POSTGRES | |||
test-resources: |
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.
Sorry for interfering, just to ask can you try using test-containers 1.19.4 in this PR, maybe these mysql overrides won't be needed?
https://github.com/testcontainers/testcontainers-java/releases/tag/1.19.4 contains fix for MySQL it seems.
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, I plan to test that version, but not in that PR, reason being that it's driven by test resources, not the Gradle plugin.
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.
Ah, sorry, I assume it is test-resources as soon as I see your name:)
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
This should fix the problem with the mysql:latest image not being compatible, as seen in several places like micronaut-projects/micronaut-gradle-plugin#927 or micronaut-projects/micronaut-test#936 or https://github.com/micronaut-projects/micronaut-test-resources/pull/503/files
* Upgrade testcontainers dependency This should fix the problem with the mysql:latest image not being compatible, as seen in several places like micronaut-projects/micronaut-gradle-plugin#927 or micronaut-projects/micronaut-test#936 or https://github.com/micronaut-projects/micronaut-test-resources/pull/503/files * Revert testcontainers redis dependency As it is a breaking change
This PR uses
cgr.dev/chainguard/wolfi-base:latest
as the default base image for all CPU architectures, not only for ARM, since it is multi-platform and a bit smaller thanfrolvlad/alpine-glibc