I need to read a file from the host machine.
For example:
import pandas as pd
pd.read_csv('/mnt/efs/fs1/data/myfile.csv')
But that '/mnt/efs/fs1/data/myfile.csv' is in my host machine, not inside my Docker container.
Is there a easy way to do that?