Hacker News new | ask | show | jobs
by verdverm 2288 days ago
How do you build containers safely in a multi tenant setup?

Any open source repos to check out?

My environment has the things in the cloud, but it is still not seconds. Even npm watch takes several seconds, let alone docker builds almost always take minutes

2 comments

> Even npm watch takes several seconds, let alone docker builds almost always take minutes

That's where caching, container layers and build stages can help a lot. Specially for development, where you might be rebuilding the same container over and over.

> How do you build containers safely in a multi tenant setup?

We have a fork of buildkit where we are implementing multitenant protections, authentication, etc ...