Today I learned about the pull flags in the podman build command.

  • --pull=false: will pull the image only if it does not exist in the local repo.
  • --pull=true: will pull the image if it doesn’t exist or if the remote has a newer version (default).
  • --pull-always: will always pull the image.
  • --pull-never: will never pull the image.

More