Which Dockerfile instruction defines python app.py as the default command when a container starts?
python app.py
CMD ["python", "app.py"]
COPY python app.py
EXPOSE python app.py
RUN python app.py