How to provide a file to a Docker container at runtime and ensure it is accessible during container execution?
I’m working on a project where I need to provide a text file to a Docker container at runtime. This file must be accessible and used by the container during its execution. The bottom line is that the python code processes the file that appears in the downloads folder, after which the code manipulates and deletes it and waits for a new one to appear(I use macOs)
How to provide a file to a Docker container at runtime and ensure it is accessible during container execution?
I’m working on a project where I need to provide a text file to a Docker container at runtime. This file must be accessible and used by the container during its execution. The bottom line is that the python code processes the file that appears in the downloads folder, after which the code manipulates and deletes it and waits for a new one to appear(I use macOs)