Hacker News new | ask | show | jobs
by jvdongen 2611 days ago
Exactly this. For the docker images we use in production, we fork the corresponding git repo, build our own image and push it to our own local docker registry and pull it from there. It's fairly easy to setup in fact.
1 comments

Out of curiosity do you resolve it so that the image is FROM scratch or do you rely on alpine/some other base image?
I forked an ubuntu image and then used it as a base for all my projects. It doesn't come for free though, you will need to periodically run security updates and then rebuild all images that depend on it.