-
Notifications
You must be signed in to change notification settings - Fork 33
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
migrate to golang:bookworm image #1070
Conversation
This allows us to keep up to date with recent Go releases and security patches while reducing our configuration in the Dockerfile. We'll bump the Go version in a separate change.
ff548a7
to
20da762
Compare
FWIW, I have noticed from other Go projects I have worked on - this does increase the size of the docker image by several hundred MBs as the official golang images are way bigger than the base debian images. |
@oskirby This isn't true for us. The I built this version as
and the original version on
Then I ran both
and also
And both returned 1-2 GB more. |
I stand corrected. Also, wow those are some big images. |
@oskirby My data was bad because I had a dirty workspace and, as you pointed out in Slack, we have the thing that With a clean working space, the
|
The ability to use a newer Go is worth the extra 100MB to me. (Security updates and features, both) |
I think that's fine. Yeah |
This allows us to keep up to date with recent Go releases and security
patches while reducing our configuration in the Dockerfile. We'll bump
the Go version in a separate change.