technerd7
technerd7

Reputation: 13

Unable to build docker container

I'm trying to run my Dockerfile script and I'm facing this error:

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?

This happens at line RUN apt-get install curl

I tried doing : RUN apt-get update && apt-get install curl but I had then faced this: "After this operation, 339 kB of additional disk space will be used.

Do you want to continue? [Y/n] Abort. The command /bin/sh -c apt-get update && apt-get install curl returned a non-zero code: 1 " Any ideas?

Upvotes: 0

Views: 2885

Answers (2)

Vebbie
Vebbie

Reputation: 1695

This should help:

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

Upvotes: 1

larsks
larsks

Reputation: 312410

You want apt-get -y install curl. The -y causes apt to proceed without prompting for confirmation.

Upvotes: 6

Related Questions