|
|
|
|
|
by beeboobaa
870 days ago
|
|
> Auditing a docker container is way more difficult/complex. I assume you mean auditing docker images. In which case, sure. That's why you grab their dockerfile and build it yourself. Though using dive[1] it's pretty easy to inspect docker images too, as long as they extend a base image you trust. [1] https://github.com/wagoodman/dive |
|
Then you still didn't audit anything. What you need to do is inspect the docker file, follow everything it pulls in and audit that, finally audit the script itself that the whole container gets built for in the first place. Whereas when you just download the script and run that directly, you only need to do the last step.