Featured Image uploaded, attached and set but only appearing in the media library

Instead of

wp_insert_post($my_post); // create a new post                
$post_id = $wp_query->post->ID;  // get the ID for the new post

try this:

$post_id = wp_insert_post($my_post); // create a new post

to get the inserted post ID.