I am trying to dockerize a simple Python-Flask application but I am getting an error while running my container.
docker: Error response from daemon: OCI runtime crea
There is no /usr/bin/python in a docker image built by the code above. But there is /usr/bin/python3. So you could either use python3 directly as your ENTRYPOINT or create a symlink.
/usr/bin/python
/usr/bin/python3
python3
ENTRYPOINT