|
|
|
|
|
by esteth
4259 days ago
|
|
You might want to look into nix and nix-docker. Nix is a package management system which knows the full (yes completely full) transitive dependency tree of every package it installs, so you can have an absolutely minimal set of software in your container if you use nix-docker. Because it's already doing version isolation in the package manager, you can also mount the software from the host into a shim container, which is more the "nix way" of doing things. |
|