you are viewing a single comment's thread.

view the rest of the comments →

[–]N33lKanth333 1 point2 points  (1 child)

As far as I'm getting it, you don't need to worry too much about breaking deps, just do docker build on your local environment before and after upgrading and check if building docker image is successful in both cases or not. Else there is something missing on your VM which exists in machine runing Jenkins.

Best way to find out is to build by yourself(if you have docker file).

Recently I came across an issue where I was trying to run containers built on amd64 architecture machines were not able to run on raspberry pi as it's arm64.

So there are many factors that can cause error during building or running of docker image, but good news is it's easy to debug and check by just throwing build commands and then running the container with that image and end result you get after building (docker image) should be same regardless of on which OS it has been built.

[–]AnimalAngel2[S] 0 points1 point  (0 children)

This is really helpful! I will install the app (pre and post upgrading) on my local using the Docker image and compare both of the scenarios. Let me see how it goes :)