python-docker-tutorial
python-docker-tutorial copied to clipboard
Learn how to dockerize Python scripts and a Python web app
You have this line: "Use Dockerfile and the code in scr directory" Need to correct 'scr' to 'src' Great tutorial though! I came here from your YouTube video.
When I try to run the debugger I get an error, in this line: import debugpy **debugpy.listen("0,0,0,0",5678)** I change to: **debugpy.listen(5678)** And finally, it works ok. This was taken verbatim...
This is for someone who is experiencing a similar error on a Windows operating system. I follow all the tutorial and for me (Machine with Windows 11 PRO, Docker desktop),...
Hi there. Thank you for the tutorial. I'm having some problems running it. When I attempt to run the docker "requests.get(URL)" returns a 403 error. I tried adding a [user...