问题 I have a Dockerfile and a Dockerfile.aws.json : { "AWSEBDockerrunVersion": "1", "Ports": [{ "ContainerPort": "5000", "HostPort": "5000" }], "Volumes": [{ "HostDirectory": "/tmp/download/models", "ContainerDirectory": "/models" }], "Logging": "/var/log/nginx", "Command": "mkdir -p /tmp && axel https://example.com/models.zip -o /tmp/models.zip" } But when I deploy, it doesn't run the Command that I specified. What am I doing wrong? 回答1: If you have ENTRYPOINT in your Dockerfile, than the