How to add css class to image attached in all the posts?

You can use the filter get_image_tag_class which exists exactly to do what you want:

add_filter('get_image_tag_class','wpse302130_add_image_class');

function wpse302130_add_image_class ($class){
    $class .= ' img-fluid';
    return $class;
    }