You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using DockerMake with the --pull option thinking that this would make it pull the base image manifest every time.
After looking at the code, I realize that the --pull option is not sent to the docker build command, it only affects sourceimages.
I.e. --pull option does not pull new FROM images if they have changed, this make it hard for us to have updated base images.
Changing line 113 in builds.py to step.build(client, usecache=usecache, pull=True) fixes this for me.
Is this is bug or is there a reason pull not being propagated?
The text was updated successfully, but these errors were encountered:
Hi @avirshup!
I'm using DockerMake with the --pull option thinking that this would make it pull the base image manifest every time.
After looking at the code, I realize that the --pull option is not sent to the docker build command, it only affects sourceimages.
I.e. --pull option does not pull new FROM images if they have changed, this make it hard for us to have updated base images.
Changing line 113 in builds.py to
step.build(client, usecache=usecache, pull=True)
fixes this for me.Is this is bug or is there a reason pull not being propagated?
The text was updated successfully, but these errors were encountered: