无法在docker中启动uwsgi作为服务

1)我已经在/etc/uwsgi/app-enabled/demo.ini中复制了我的demo.ini文件

2)我已经安装了apt-get install uwsgi-plugin-python软件包

3)在demi.ini文件中现在添加了plugins = python,当我点击命令sudo service uwsgi status,它显示输出哪个?

FROM base_image RUN apt-get -y install uwsgi COPY workspace /home/nt/workspace RUN ln -s /home/nt/workspace/backend.conf /etc/nginx/sites-enabled/backend.conf RUN ln -s /home/nt/workspace/nti-backend/environment/development.ini /etc/uwsgi/apps-enabled/ RUN pip install -r /home/nt/workspace/nti-backend/requirements.txt ENTRYPOINT sh /home/nt/workspace/startup.sh && /bin/bash