I have this part of my python code which iterates through the folder and add file names to the list.
base_path = D:/tests/resources
for file in glob.glob(f'{base_path}/eox/data/eur/*.txt'):
lst.append(file)
Now I have the docker images where I assume it should do the same thing after running this docker command.
docker run -i --rm -v D:/tests/resources:/tmp/output dockerimg:latest prepare --base_path D:/tests/resources
but somehow the list is empty even though D:/tests/resources have txt files in it. Is it because the volume is not mounted correctly?