I have a docker image that has 13 set of modifications since its creation. For each set of modification, a new image has been created. Thus there are currently 13 image versions with the 13th one being the newest. Also, each image is dependent on the previous version. In short, the 13th version has a dependency that has recursive dependencies. How to create an complete independent image from 13th version ?
More abstractly, How to generate an independent docker image from an image that has recursive dependencies ?
I checked the answere here but it doesn't answer my question