I have a Docker built FROM python:3 image.
I can execute a python script from that Dockerfile using
ENTRYPOINT [ “python3”, “./trigger_script.py” ]
In the trigger_script I try to download a zip and run it using subprocess
check_call(“python3”, zip_sample.zip)
I get error while running the code in docker saying it cannot find main.py while it is there and I can execute the ZIP locally just fine.
I suspect this is because of some library that I need to install. Any suggestions?