我正在从Azure发布管道在Linux VM上部署python代码。当我尝试从bash任务启动脚本时,该任务将继续运行。如果我尝试使用nohup调用scipt start命令,则Azure代理会在完成任务时终止该进程。
The STDIO streams did not close within 10 seconds of the exit event from process '/bin/bash'. This may indicate a child process inherited the STDIO streams and has not yet exited.
任务内容:
python3 app/main.py
问题: 1.如何通过Azure发布管道在Linux VM上后台运行脚本?
2。是否有特定方法将其设置为Linux VM上的管道进程?