哪个 Dockerfile 指令会将 python app.py 定义为容器启动时的默认命令?
python app.py
RUN python app.py
CMD ["python", "app.py"]
COPY python app.py
EXPOSE python app.py