FFmpeg have option to map all streams to output, you have to use option -map 0
to map all streams from input to output.
In full line it might look like:
ffmpeg -i in.mp4 -c copy -map 0 out.mp4
For more info see the documentation on stream selection and the -map
option.