Elastic Beanstalk Docker镜像失败

我正在升级我们的EB环境之一,并使用python:3.6.1-alpine作为新的Docker镜像。 问题是Elastic Beanstalk无法find3.6.1-alpine的docker image标签

 Pulling repository docker.io/library/python Tag 3.6.1-alpine not found in repository docker.io/library/python. Check snapshot logs for detail 

然而,在本地拉取图片是有效的:

 (env)lappy:project dave$ docker pull python:3.6.1-alpine 3.6.1-alpine: Pulling from library/python 709515475419: Already exists 7f8ede2d2484: Already exists 3f793c092168: Pull complete a2a8b8745877: Pull complete Digest: sha256:6ebe18fd00f5175b5f1fe45bfb131f22f5d997f4fe361546cf0a13de396b8009 Status: Downloaded newer image for python:3.6.1-alpine 

我不太清楚发生了什么事情,因为这是一个已经上线了近一年的Beanstalk中的应用程序。

我想出了一个解决问题的办法。 我重build了我的Elastic Beanstalk Environment,并且能够sudo docker pull python:3.6-alpine 。 我不知道这个问题的原因,或者为什么在重build时突然出现问题,但是这确实解决了这个问题。