Docker构建:无法获取档案

时间:2016-09-15 18:52:14

标签: ubuntu docker

我在Windows机器上使用docker工具箱。我试图从github https://github.com/pyannote/pyannote-video构建这个项目。当我通过运行docker build -t pyannote/video .构建图像时,出现以下错误:

Get:17 http://archive.ubuntu.com/ubuntu/ trusty-updates/main python-setuptools all 3.3-1ubuntu2 [230 kB]
Err http://archive.ubuntu.com/ubuntu/ trusty-updates/universe python-pip all 1.5.4-1ubuntu3
  404  Not Found [IP: 91.189.88.149 80]
Fetched 1658 kB in 21s (78.5 kB/s)
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python-pip-whl_1.5.4-1ubuntu3_all.deb  404  Not Found [IP: 91.189.88.1
9 80]

E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python-pip_1.5.4-1ubuntu3_all.deb  404  Not Found [IP: 91.189.88.149 8
]

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
The command '/bin/sh -c DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends     python     python-dev     python-pip' returned
a non-zero code: 100

我查看了http://archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/。有python-pip_1.5.4-1ubuntu4_all.deb而不是python-pip_1.5.4-1ubuntu3_all.deb。

输出要求我运行apt-get update或尝试使用--fix-missing,但我在Windows上运行docker。运行apt-get将返回未找到的命令。我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:3)

编辑Dockerfile并从中更改第5行:

RUN DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \

到此:

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -yq --no-install-recommends \
                                   ^ Add this part ^

然后告诉谁写了那个Dockerfile来阅读this