Here is what I added to the functions.php file in my child theme.
add_action( ‘init’, ‘create_post_pub’ );
function create_post_pub()
{
// Add featured image support to events plugin
add_theme_support( ‘post-thumbnails’, array( ‘post’, ‘tribe_events’ ) );
add_theme_support( ‘thumbnail’, array( ‘post’, ‘tribe_events’ ) );
}