标签: python-2.7 dockerfile
我想在容器中运行python web应用程序,但dockerfile中的CMD不运行(CMD ["gunicorn","--config","python:config","web:app"])。当我在容器中使用命令"gunicorn --config python:cpnfig web:app"时,它可以工作(在这种情况下,容器以"/bin/bash"开头)。 如何修改dockerfile中的CMD以运行应用程序?
CMD ["gunicorn","--config","python:config","web:app"]
"gunicorn --config python:cpnfig web:app"
"/bin/bash"