拉 docker 图像 python:2.7-onbuild 需要很长时间

Pulling docker image python:2.7-onbuild taking a long time

我正在尝试使用以下 .gitlab-ci.yml 实现 GitLab CI 管道:

image: python:2.7-onbuild

services:
  - rethinkdb:latest

test_job:
  script:
    - pytest

同一目录中的 requirements.txt 包含单行 pytest==3.0.7.

问题是 "Pulling docker image python:2.7-onbuild" 似乎需要很长时间;超过 14 分钟(见下面的屏幕截图)。

这正常吗?是否有更快的方法来设置测试?

这个问题好像是第一次出现,用了61分钟。之后,大约一分钟后管道 运行。

(作为参考,CI-test 存储库位于 https://gitlab.com/khpeek/CI-test,经过一些修改后所有管道均已成功)。