I have tried multiple options but I just can't figure out how to access my starting foo.py file which is hiden in my directory structure.
The structure looks like this:
D:
│___ Dockerfile
│
└───Level1
└───Level2
foo.py
Now to start the project I need to access the foo.py file, which then works with different files spread over Level1 and 2. The problem is that I am not able to access the foo.py file with something like:
COPY /Level1 .
CMD ["python3", "/Level1/Level2/foo.py"]
The error is python3: can't open file
Please help