无法建立Docker容器

时间:2019-01-24 17:35:00

标签: docker apt-get

我正在尝试运行Dockerfile脚本,并且遇到此错误:

E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.47.0-1ubuntu2.9_amd64.deb  404  Not Found [IP: 91.189.88.161 80]

E: Unable to fetch some archives, may be run apt-get update or try with --fix-missing?

这发生在第 RUN apt-get install curl

我尝试做:RUN apt-get update && apt-get install curl,但是后来我面对了这个问题: “执行此操作后,将使用339 kB的额外磁盘空间。

您要继续吗? [是/否]中止。 命令/bin/sh -c apt-get update && apt-get install curl返回了非零代码:1 ” 有什么想法吗?

2 个答案:

答案 0 :(得分:1)

您想要n = int(input()) for i in range(2,n+1): for j in range(2,n+1): if i%j == 0 and i!=j: break else: print(i,end=" ") break Input : 20 Output : 2 3 5 7 9 11 13 15 17 19 apt-get -y install curl会导致继续进行而不提示您进行确认。

答案 1 :(得分:1)

这应该有所帮助:

RUN apt-get clean && apt-get -y update && apt-get install -y curl