Build base docker image

He wants to develop an algorithm and prepare it to search for common features of various images and build base images from them. This way, the solution will be quick, without the need to install (many) system dependencies, and it will be possible to dynamically rebuild them depending on the needs.

I started with the Docker manifest and config but I don’t know if I chose the right path to dig into the image layers later.

I am asking for tips and direction.

You create Docker images with Dockerfile and docker build command. During build you tag them with a name, then you can reuse them in FROM in another Dockerfile.

1 Like